Models
Types

Models

Account

Fields

Name Type Attributes Required Comment
userId String?
  • -
No -
type String?
  • -
No -
provider String?
  • @unique
No -
providerAccountId String?
  • @unique
No -
refresh_token String?
  • -
No -
access_token String?
  • -
No -
expires_at BigInt?
  • -
No -
scope String?
  • -
No -
id_token String
  • @id
Yes -
session_state String?
  • -
No -

Operations

findUnique

Find zero or one Account

// Get one Account
const account = await prisma.account.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

findFirst

Find first Account

// Get one Account
const account = await prisma.account.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: No
List: No

findMany

Find zero or more Account

// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: Yes
List: Yes

create

Create one Account

// Create one Account
const Account = await prisma.account.create({
  data: {
    // ... data to create a Account
  }
})

Input

undefined
Name Type Required

Output

Type: undefined
Required: Yes
List: No

delete

Delete one Account

// Delete one Account
const Account = await prisma.account.delete({
  where: {
    // ... filter to delete one Account
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

update

Update one Account

// Update one Account
const account = await prisma.account.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateInput | AccountUncheckedUpdateInput Yes
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

deleteMany

Delete zero or more Account

// Delete a few Account
const { count } = await prisma.account.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Account

const { count } = await prisma.account.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput Yes
where AccountWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Account

// Update or create a Account
const account = await prisma.account.upsert({
  create: {
    // ... data to create a Account
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Account we want to update
  }
})

Input

undefined
Name Type Required

Output

Type: undefined
Required: Yes
List: No

Ambulance

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
vehicle_number String
  • -
Yes -
ambulance_type String?
  • -
No -
person Int
  • -
Yes -
version String
  • @default(v1)
Yes -
organization Int?
  • -
No -
equipment String[]
  • -
Yes -
contact Int?
  • -
No -
color String?
  • -
No -
Contact Contact?
  • -
No -
Organization Organization?
  • -
No -
Person Person
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Ambulance

// Get one Ambulance
const ambulance = await prisma.ambulance.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AmbulanceWhereUniqueInput Yes

Output

Type: Ambulance
Required: No
List: No

findFirst

Find first Ambulance

// Get one Ambulance
const ambulance = await prisma.ambulance.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AmbulanceWhereInput No
orderBy AmbulanceOrderByWithRelationInput[] | AmbulanceOrderByWithRelationInput No
cursor AmbulanceWhereUniqueInput No
take Int No
skip Int No
distinct AmbulanceScalarFieldEnum | AmbulanceScalarFieldEnum[] No

Output

Type: Ambulance
Required: No
List: No

findMany

Find zero or more Ambulance

// Get all Ambulance
const Ambulance = await prisma.ambulance.findMany()
// Get first 10 Ambulance
const Ambulance = await prisma.ambulance.findMany({ take: 10 })

Input

Name Type Required
where AmbulanceWhereInput No
orderBy AmbulanceOrderByWithRelationInput[] | AmbulanceOrderByWithRelationInput No
cursor AmbulanceWhereUniqueInput No
take Int No
skip Int No
distinct AmbulanceScalarFieldEnum | AmbulanceScalarFieldEnum[] No

Output

Type: Ambulance
Required: Yes
List: Yes

create

Create one Ambulance

// Create one Ambulance
const Ambulance = await prisma.ambulance.create({
  data: {
    // ... data to create a Ambulance
  }
})

Input

Name Type Required
data AmbulanceCreateInput | AmbulanceUncheckedCreateInput Yes

Output

Type: Ambulance
Required: Yes
List: No

delete

Delete one Ambulance

// Delete one Ambulance
const Ambulance = await prisma.ambulance.delete({
  where: {
    // ... filter to delete one Ambulance
  }
})

Input

Name Type Required
where AmbulanceWhereUniqueInput Yes

Output

Type: Ambulance
Required: No
List: No

update

Update one Ambulance

// Update one Ambulance
const ambulance = await prisma.ambulance.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AmbulanceUpdateInput | AmbulanceUncheckedUpdateInput Yes
where AmbulanceWhereUniqueInput Yes

Output

Type: Ambulance
Required: No
List: No

deleteMany

Delete zero or more Ambulance

// Delete a few Ambulance
const { count } = await prisma.ambulance.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AmbulanceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Ambulance

const { count } = await prisma.ambulance.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyInput Yes
where AmbulanceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Ambulance

// Update or create a Ambulance
const ambulance = await prisma.ambulance.upsert({
  create: {
    // ... data to create a Ambulance
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Ambulance we want to update
  }
})

Input

Name Type Required
where AmbulanceWhereUniqueInput Yes
create AmbulanceCreateInput | AmbulanceUncheckedCreateInput Yes
update AmbulanceUpdateInput | AmbulanceUncheckedUpdateInput Yes

Output

Type: Ambulance
Required: Yes
List: No

BloodCenter

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
established_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
founder Int
  • -
Yes -
contact Int?
  • -
No -
title String
  • -
Yes -
Contact_BloodCenter_contactToContact Contact?
  • -
No -
Person Person
  • -
Yes -
Version Version
  • -
Yes -
BloodDonation BloodDonation[]
  • -
Yes -
Contact_Contact_blood_centerToBloodCenter Contact[]
  • -
Yes -

Operations

findUnique

Find zero or one BloodCenter

// Get one BloodCenter
const bloodCenter = await prisma.bloodCenter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BloodCenterWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BloodCenter

// Get one BloodCenter
const bloodCenter = await prisma.bloodCenter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BloodCenterWhereInput No
orderBy BloodCenterOrderByWithRelationInput[] | BloodCenterOrderByWithRelationInput No
cursor BloodCenterWhereUniqueInput No
take Int No
skip Int No
distinct BloodCenterScalarFieldEnum | BloodCenterScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BloodCenter

// Get all BloodCenter
const BloodCenter = await prisma.bloodCenter.findMany()
// Get first 10 BloodCenter
const BloodCenter = await prisma.bloodCenter.findMany({ take: 10 })

Input

Name Type Required
where BloodCenterWhereInput No
orderBy BloodCenterOrderByWithRelationInput[] | BloodCenterOrderByWithRelationInput No
cursor BloodCenterWhereUniqueInput No
take Int No
skip Int No
distinct BloodCenterScalarFieldEnum | BloodCenterScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BloodCenter

// Create one BloodCenter
const BloodCenter = await prisma.bloodCenter.create({
  data: {
    // ... data to create a BloodCenter
  }
})

Input

Name Type Required
data BloodCenterCreateInput | BloodCenterUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BloodCenter

// Delete one BloodCenter
const BloodCenter = await prisma.bloodCenter.delete({
  where: {
    // ... filter to delete one BloodCenter
  }
})

Input

Name Type Required
where BloodCenterWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BloodCenter

// Update one BloodCenter
const bloodCenter = await prisma.bloodCenter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BloodCenterUpdateInput | BloodCenterUncheckedUpdateInput Yes
where BloodCenterWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BloodCenter

// Delete a few BloodCenter
const { count } = await prisma.bloodCenter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BloodCenterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BloodCenter

const { count } = await prisma.bloodCenter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyInput Yes
where BloodCenterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BloodCenter

// Update or create a BloodCenter
const bloodCenter = await prisma.bloodCenter.upsert({
  create: {
    // ... data to create a BloodCenter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BloodCenter we want to update
  }
})

Input

Name Type Required
where BloodCenterWhereUniqueInput Yes
create BloodCenterCreateInput | BloodCenterUncheckedCreateInput Yes
update BloodCenterUpdateInput | BloodCenterUncheckedUpdateInput Yes

Output

Required: Yes
List: No

BloodDonation

Description: This model or at least one of its fields has comments in the database, and requires an additional setup for migrations: Read more: https://pris.ly/d/database-comments

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
donor_id Int
  • -
Yes -
organization_id Int
  • -
Yes -
amount Int
  • -
Yes -
version String
  • -
Yes -
donated_at DateTime
  • @default(now())
Yes -
referred_by String?
  • -
No -
test_done Json?
  • -
No -
bags String[]
  • -
Yes -
media_done String?
  • -
No -
media_used String?
  • -
No -
incubation String?
  • -
No -
note String?
  • -
No -
created_at DateTime?
  • @default(now())
No -
updated_at DateTime?
  • -
No -
cabin_no String?
  • -
No -
reg_no String?
  • -
No -
BloodCenter BloodCenter
  • -
Yes -
Person Person
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one BloodDonation

// Get one BloodDonation
const bloodDonation = await prisma.bloodDonation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BloodDonationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BloodDonation

// Get one BloodDonation
const bloodDonation = await prisma.bloodDonation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BloodDonationWhereInput No
orderBy BloodDonationOrderByWithRelationInput[] | BloodDonationOrderByWithRelationInput No
cursor BloodDonationWhereUniqueInput No
take Int No
skip Int No
distinct BloodDonationScalarFieldEnum | BloodDonationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BloodDonation

// Get all BloodDonation
const BloodDonation = await prisma.bloodDonation.findMany()
// Get first 10 BloodDonation
const BloodDonation = await prisma.bloodDonation.findMany({ take: 10 })

Input

Name Type Required
where BloodDonationWhereInput No
orderBy BloodDonationOrderByWithRelationInput[] | BloodDonationOrderByWithRelationInput No
cursor BloodDonationWhereUniqueInput No
take Int No
skip Int No
distinct BloodDonationScalarFieldEnum | BloodDonationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BloodDonation

// Create one BloodDonation
const BloodDonation = await prisma.bloodDonation.create({
  data: {
    // ... data to create a BloodDonation
  }
})

Input

Name Type Required
data BloodDonationCreateInput | BloodDonationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BloodDonation

// Delete one BloodDonation
const BloodDonation = await prisma.bloodDonation.delete({
  where: {
    // ... filter to delete one BloodDonation
  }
})

Input

Name Type Required
where BloodDonationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BloodDonation

// Update one BloodDonation
const bloodDonation = await prisma.bloodDonation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BloodDonationUpdateInput | BloodDonationUncheckedUpdateInput Yes
where BloodDonationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BloodDonation

// Delete a few BloodDonation
const { count } = await prisma.bloodDonation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BloodDonationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BloodDonation

const { count } = await prisma.bloodDonation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyInput Yes
where BloodDonationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BloodDonation

// Update or create a BloodDonation
const bloodDonation = await prisma.bloodDonation.upsert({
  create: {
    // ... data to create a BloodDonation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BloodDonation we want to update
  }
})

Input

Name Type Required
where BloodDonationWhereUniqueInput Yes
create BloodDonationCreateInput | BloodDonationUncheckedCreateInput Yes
update BloodDonationUpdateInput | BloodDonationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Club

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
name String
  • -
Yes -
established_at DateTime
  • -
Yes -
contact Int
  • -
Yes -
version String
  • @default(v1)
Yes -
chairman Int
  • -
Yes -
founder Int
  • -
Yes -
vice_chairman Int
  • -
Yes -
Person_Club_chairmanToPerson Person
  • -
Yes -
Contact_Club_contactToContact Contact
  • -
Yes -
Person_Club_founderToPerson Person
  • -
Yes -
Version Version
  • -
Yes -
Person_Club_vice_chairmanToPerson Person
  • -
Yes -
Contact_Contact_clubToClub Contact[]
  • -
Yes -
Member Member[]
  • -
Yes -
Organization Organization[]
  • -
Yes -

Operations

findUnique

Find zero or one Club

// Get one Club
const club = await prisma.club.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClubWhereUniqueInput Yes

Output

Type: Club
Required: No
List: No

findFirst

Find first Club

// Get one Club
const club = await prisma.club.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClubWhereInput No
orderBy ClubOrderByWithRelationInput[] | ClubOrderByWithRelationInput No
cursor ClubWhereUniqueInput No
take Int No
skip Int No
distinct ClubScalarFieldEnum | ClubScalarFieldEnum[] No

Output

Type: Club
Required: No
List: No

findMany

Find zero or more Club

// Get all Club
const Club = await prisma.club.findMany()
// Get first 10 Club
const Club = await prisma.club.findMany({ take: 10 })

Input

Name Type Required
where ClubWhereInput No
orderBy ClubOrderByWithRelationInput[] | ClubOrderByWithRelationInput No
cursor ClubWhereUniqueInput No
take Int No
skip Int No
distinct ClubScalarFieldEnum | ClubScalarFieldEnum[] No

Output

Type: Club
Required: Yes
List: Yes

create

Create one Club

// Create one Club
const Club = await prisma.club.create({
  data: {
    // ... data to create a Club
  }
})

Input

Name Type Required
data ClubCreateInput | ClubUncheckedCreateInput Yes

Output

Type: Club
Required: Yes
List: No

delete

Delete one Club

// Delete one Club
const Club = await prisma.club.delete({
  where: {
    // ... filter to delete one Club
  }
})

Input

Name Type Required
where ClubWhereUniqueInput Yes

Output

Type: Club
Required: No
List: No

update

Update one Club

// Update one Club
const club = await prisma.club.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ClubUpdateInput | ClubUncheckedUpdateInput Yes
where ClubWhereUniqueInput Yes

Output

Type: Club
Required: No
List: No

deleteMany

Delete zero or more Club

// Delete a few Club
const { count } = await prisma.club.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClubWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Club

const { count } = await prisma.club.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ClubUpdateManyMutationInput | ClubUncheckedUpdateManyInput Yes
where ClubWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Club

// Update or create a Club
const club = await prisma.club.upsert({
  create: {
    // ... data to create a Club
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Club we want to update
  }
})

Input

Name Type Required
where ClubWhereUniqueInput Yes
create ClubCreateInput | ClubUncheckedCreateInput Yes
update ClubUpdateInput | ClubUncheckedUpdateInput Yes

Output

Type: Club
Required: Yes
List: No

Contact

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
address_line String
  • -
Yes -
address_line_1 String?
  • -
No -
state String
  • -
Yes -
city String
  • -
Yes -
zip String
  • -
Yes -
phone String
  • -
Yes -
phone_1 String?
  • -
No -
fax String?
  • -
No -
email String?
  • -
No -
email_1 String?
  • -
No -
website String?
  • -
No -
social_media Json?
  • -
No -
version String
  • @default(v1)
Yes -
country String?
  • -
No -
person Int?
  • -
No -
club Int?
  • -
No -
blood_center Int?
  • -
No -
donation Int?
  • -
No -
hospital Int?
  • -
No -
Ambulance Ambulance[]
  • -
Yes -
BloodCenter_BloodCenter_contactToContact BloodCenter[]
  • -
Yes -
Club_Club_contactToContact Club[]
  • -
Yes -
BloodCenter_Contact_blood_centerToBloodCenter BloodCenter?
  • -
No -
Club_Contact_clubToClub Club?
  • -
No -
Country Country?
  • -
No -
Donation Donation?
  • -
No -
Hospital_Contact_hospitalToHospital Hospital?
  • -
No -
Person_Contact_personToPerson Person?
  • -
No -
Version Version
  • -
Yes -
Hospital_Hospital_contactToContact Hospital[]
  • -
Yes -
Person_Person_contact_idToContact Person[]
  • -
Yes -

Operations

findUnique

Find zero or one Contact

// Get one Contact
const contact = await prisma.contact.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ContactWhereUniqueInput Yes

Output

Type: Contact
Required: No
List: No

findFirst

Find first Contact

// Get one Contact
const contact = await prisma.contact.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ContactWhereInput No
orderBy ContactOrderByWithRelationInput[] | ContactOrderByWithRelationInput No
cursor ContactWhereUniqueInput No
take Int No
skip Int No
distinct ContactScalarFieldEnum | ContactScalarFieldEnum[] No

Output

Type: Contact
Required: No
List: No

findMany

Find zero or more Contact

// Get all Contact
const Contact = await prisma.contact.findMany()
// Get first 10 Contact
const Contact = await prisma.contact.findMany({ take: 10 })

Input

Name Type Required
where ContactWhereInput No
orderBy ContactOrderByWithRelationInput[] | ContactOrderByWithRelationInput No
cursor ContactWhereUniqueInput No
take Int No
skip Int No
distinct ContactScalarFieldEnum | ContactScalarFieldEnum[] No

Output

Type: Contact
Required: Yes
List: Yes

create

Create one Contact

// Create one Contact
const Contact = await prisma.contact.create({
  data: {
    // ... data to create a Contact
  }
})

Input

Name Type Required
data ContactCreateInput | ContactUncheckedCreateInput Yes

Output

Type: Contact
Required: Yes
List: No

delete

Delete one Contact

// Delete one Contact
const Contact = await prisma.contact.delete({
  where: {
    // ... filter to delete one Contact
  }
})

Input

Name Type Required
where ContactWhereUniqueInput Yes

Output

Type: Contact
Required: No
List: No

update

Update one Contact

// Update one Contact
const contact = await prisma.contact.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ContactUpdateInput | ContactUncheckedUpdateInput Yes
where ContactWhereUniqueInput Yes

Output

Type: Contact
Required: No
List: No

deleteMany

Delete zero or more Contact

// Delete a few Contact
const { count } = await prisma.contact.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ContactWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Contact

const { count } = await prisma.contact.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyInput Yes
where ContactWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Contact

// Update or create a Contact
const contact = await prisma.contact.upsert({
  create: {
    // ... data to create a Contact
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Contact we want to update
  }
})

Input

Name Type Required
where ContactWhereUniqueInput Yes
create ContactCreateInput | ContactUncheckedCreateInput Yes
update ContactUpdateInput | ContactUncheckedUpdateInput Yes

Output

Type: Contact
Required: Yes
List: No

Country

Name Value
@@unique
  • alpha_3
  • alpha_2
  • numeric
  • name
@@index
  • alpha_3
  • alpha_2
  • numeric
  • name

Fields

Name Type Attributes Required Comment
alpha_3 String
  • @id
Yes -
alpha_2 String
  • @unique
Yes -
numeric String
  • -
Yes -
name String
  • -
Yes -
version String
  • -
Yes -
created_at DateTime?
  • @default(now())
No -
updated_at DateTime?
  • -
No -
Contact Contact[]
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Country

// Get one Country
const country = await prisma.country.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CountryWhereUniqueInput Yes

Output

Type: Country
Required: No
List: No

findFirst

Find first Country

// Get one Country
const country = await prisma.country.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CountryWhereInput No
orderBy CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput No
cursor CountryWhereUniqueInput No
take Int No
skip Int No
distinct CountryScalarFieldEnum | CountryScalarFieldEnum[] No

Output

Type: Country
Required: No
List: No

findMany

Find zero or more Country

// Get all Country
const Country = await prisma.country.findMany()
// Get first 10 Country
const Country = await prisma.country.findMany({ take: 10 })

Input

Name Type Required
where CountryWhereInput No
orderBy CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput No
cursor CountryWhereUniqueInput No
take Int No
skip Int No
distinct CountryScalarFieldEnum | CountryScalarFieldEnum[] No

Output

Type: Country
Required: Yes
List: Yes

create

Create one Country

// Create one Country
const Country = await prisma.country.create({
  data: {
    // ... data to create a Country
  }
})

Input

Name Type Required
data CountryCreateInput | CountryUncheckedCreateInput Yes

Output

Type: Country
Required: Yes
List: No

delete

Delete one Country

// Delete one Country
const Country = await prisma.country.delete({
  where: {
    // ... filter to delete one Country
  }
})

Input

Name Type Required
where CountryWhereUniqueInput Yes

Output

Type: Country
Required: No
List: No

update

Update one Country

// Update one Country
const country = await prisma.country.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CountryUpdateInput | CountryUncheckedUpdateInput Yes
where CountryWhereUniqueInput Yes

Output

Type: Country
Required: No
List: No

deleteMany

Delete zero or more Country

// Delete a few Country
const { count } = await prisma.country.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CountryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Country

const { count } = await prisma.country.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CountryUpdateManyMutationInput | CountryUncheckedUpdateManyInput Yes
where CountryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Country

// Update or create a Country
const country = await prisma.country.upsert({
  create: {
    // ... data to create a Country
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Country we want to update
  }
})

Input

Name Type Required
where CountryWhereUniqueInput Yes
create CountryCreateInput | CountryUncheckedCreateInput Yes
update CountryUpdateInput | CountryUncheckedUpdateInput Yes

Output

Type: Country
Required: Yes
List: No

Device

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
created_at DateTime?
  • -
No -
updated_at DateTime?
  • -
No -
name String?
  • -
No -
mac_address String?
  • -
No -
model String?
  • -
No -
os String?
  • -
No -
os_version String?
  • -
No -
device_id String?
  • -
No -
brand String?
  • -
No -
manufacturer String?
  • -
No -
version String
  • -
Yes -
Version Version
  • -
Yes -
LoginRecord LoginRecord[]
  • -
Yes -

Operations

findUnique

Find zero or one Device

// Get one Device
const device = await prisma.device.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DeviceWhereUniqueInput Yes

Output

Type: Device
Required: No
List: No

findFirst

Find first Device

// Get one Device
const device = await prisma.device.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DeviceWhereInput No
orderBy DeviceOrderByWithRelationInput[] | DeviceOrderByWithRelationInput No
cursor DeviceWhereUniqueInput No
take Int No
skip Int No
distinct DeviceScalarFieldEnum | DeviceScalarFieldEnum[] No

Output

Type: Device
Required: No
List: No

findMany

Find zero or more Device

// Get all Device
const Device = await prisma.device.findMany()
// Get first 10 Device
const Device = await prisma.device.findMany({ take: 10 })

Input

Name Type Required
where DeviceWhereInput No
orderBy DeviceOrderByWithRelationInput[] | DeviceOrderByWithRelationInput No
cursor DeviceWhereUniqueInput No
take Int No
skip Int No
distinct DeviceScalarFieldEnum | DeviceScalarFieldEnum[] No

Output

Type: Device
Required: Yes
List: Yes

create

Create one Device

// Create one Device
const Device = await prisma.device.create({
  data: {
    // ... data to create a Device
  }
})

Input

Name Type Required
data DeviceCreateInput | DeviceUncheckedCreateInput Yes

Output

Type: Device
Required: Yes
List: No

delete

Delete one Device

// Delete one Device
const Device = await prisma.device.delete({
  where: {
    // ... filter to delete one Device
  }
})

Input

Name Type Required
where DeviceWhereUniqueInput Yes

Output

Type: Device
Required: No
List: No

update

Update one Device

// Update one Device
const device = await prisma.device.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DeviceUpdateInput | DeviceUncheckedUpdateInput Yes
where DeviceWhereUniqueInput Yes

Output

Type: Device
Required: No
List: No

deleteMany

Delete zero or more Device

// Delete a few Device
const { count } = await prisma.device.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DeviceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Device

const { count } = await prisma.device.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DeviceUpdateManyMutationInput | DeviceUncheckedUpdateManyInput Yes
where DeviceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Device

// Update or create a Device
const device = await prisma.device.upsert({
  create: {
    // ... data to create a Device
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Device we want to update
  }
})

Input

Name Type Required
where DeviceWhereUniqueInput Yes
create DeviceCreateInput | DeviceUncheckedCreateInput Yes
update DeviceUpdateInput | DeviceUncheckedUpdateInput Yes

Output

Type: Device
Required: Yes
List: No

Donation

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
amount Int
  • @default(0)
Yes -
donated_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
person Int
  • -
Yes -
member Int
  • -
Yes -
organization Int
  • -
Yes -
Contact Contact[]
  • -
Yes -
Member Member
  • -
Yes -
Organization Organization
  • -
Yes -
Person Person
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Donation

// Get one Donation
const donation = await prisma.donation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DonationWhereUniqueInput Yes

Output

Type: Donation
Required: No
List: No

findFirst

Find first Donation

// Get one Donation
const donation = await prisma.donation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DonationWhereInput No
orderBy DonationOrderByWithRelationInput[] | DonationOrderByWithRelationInput No
cursor DonationWhereUniqueInput No
take Int No
skip Int No
distinct DonationScalarFieldEnum | DonationScalarFieldEnum[] No

Output

Type: Donation
Required: No
List: No

findMany

Find zero or more Donation

// Get all Donation
const Donation = await prisma.donation.findMany()
// Get first 10 Donation
const Donation = await prisma.donation.findMany({ take: 10 })

Input

Name Type Required
where DonationWhereInput No
orderBy DonationOrderByWithRelationInput[] | DonationOrderByWithRelationInput No
cursor DonationWhereUniqueInput No
take Int No
skip Int No
distinct DonationScalarFieldEnum | DonationScalarFieldEnum[] No

Output

Type: Donation
Required: Yes
List: Yes

create

Create one Donation

// Create one Donation
const Donation = await prisma.donation.create({
  data: {
    // ... data to create a Donation
  }
})

Input

Name Type Required
data DonationCreateInput | DonationUncheckedCreateInput Yes

Output

Type: Donation
Required: Yes
List: No

delete

Delete one Donation

// Delete one Donation
const Donation = await prisma.donation.delete({
  where: {
    // ... filter to delete one Donation
  }
})

Input

Name Type Required
where DonationWhereUniqueInput Yes

Output

Type: Donation
Required: No
List: No

update

Update one Donation

// Update one Donation
const donation = await prisma.donation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DonationUpdateInput | DonationUncheckedUpdateInput Yes
where DonationWhereUniqueInput Yes

Output

Type: Donation
Required: No
List: No

deleteMany

Delete zero or more Donation

// Delete a few Donation
const { count } = await prisma.donation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DonationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Donation

const { count } = await prisma.donation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DonationUpdateManyMutationInput | DonationUncheckedUpdateManyInput Yes
where DonationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Donation

// Update or create a Donation
const donation = await prisma.donation.upsert({
  create: {
    // ... data to create a Donation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Donation we want to update
  }
})

Input

Name Type Required
where DonationWhereUniqueInput Yes
create DonationCreateInput | DonationUncheckedCreateInput Yes
update DonationUpdateInput | DonationUncheckedUpdateInput Yes

Output

Type: Donation
Required: Yes
List: No

Hospital

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
name String
  • -
Yes -
founded_at DateTime
  • -
Yes -
accreditation String?
  • -
No -
bed_count Int?
  • -
No -
emergency_room Boolean?
  • -
No -
services String[]
  • -
Yes -
specialties String[]
  • -
Yes -
rating Float?
  • -
No -
facility_type FacilityType?
  • -
No -
ownership String?
  • -
No -
insurance_accepted String?
  • -
No -
operating_hours String?
  • -
No -
infrastructure String?
  • -
No -
security_controls String?
  • -
No -
version String
  • @default(v1)
Yes -
location Int?
  • -
No -
contact Int?
  • -
No -
founder Int?
  • -
No -
director Int?
  • -
No -
chairman Int?
  • -
No -
Contact_Contact_hospitalToHospital Contact[]
  • -
Yes -
Contact_Hospital_contactToContact Contact?
  • -
No -
Location Location?
  • -
No -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Hospital

// Get one Hospital
const hospital = await prisma.hospital.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where HospitalWhereUniqueInput Yes

Output

Type: Hospital
Required: No
List: No

findFirst

Find first Hospital

// Get one Hospital
const hospital = await prisma.hospital.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where HospitalWhereInput No
orderBy HospitalOrderByWithRelationInput[] | HospitalOrderByWithRelationInput No
cursor HospitalWhereUniqueInput No
take Int No
skip Int No
distinct HospitalScalarFieldEnum | HospitalScalarFieldEnum[] No

Output

Type: Hospital
Required: No
List: No

findMany

Find zero or more Hospital

// Get all Hospital
const Hospital = await prisma.hospital.findMany()
// Get first 10 Hospital
const Hospital = await prisma.hospital.findMany({ take: 10 })

Input

Name Type Required
where HospitalWhereInput No
orderBy HospitalOrderByWithRelationInput[] | HospitalOrderByWithRelationInput No
cursor HospitalWhereUniqueInput No
take Int No
skip Int No
distinct HospitalScalarFieldEnum | HospitalScalarFieldEnum[] No

Output

Type: Hospital
Required: Yes
List: Yes

create

Create one Hospital

// Create one Hospital
const Hospital = await prisma.hospital.create({
  data: {
    // ... data to create a Hospital
  }
})

Input

Name Type Required
data HospitalCreateInput | HospitalUncheckedCreateInput Yes

Output

Type: Hospital
Required: Yes
List: No

delete

Delete one Hospital

// Delete one Hospital
const Hospital = await prisma.hospital.delete({
  where: {
    // ... filter to delete one Hospital
  }
})

Input

Name Type Required
where HospitalWhereUniqueInput Yes

Output

Type: Hospital
Required: No
List: No

update

Update one Hospital

// Update one Hospital
const hospital = await prisma.hospital.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data HospitalUpdateInput | HospitalUncheckedUpdateInput Yes
where HospitalWhereUniqueInput Yes

Output

Type: Hospital
Required: No
List: No

deleteMany

Delete zero or more Hospital

// Delete a few Hospital
const { count } = await prisma.hospital.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where HospitalWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Hospital

const { count } = await prisma.hospital.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyInput Yes
where HospitalWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Hospital

// Update or create a Hospital
const hospital = await prisma.hospital.upsert({
  create: {
    // ... data to create a Hospital
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Hospital we want to update
  }
})

Input

Name Type Required
where HospitalWhereUniqueInput Yes
create HospitalCreateInput | HospitalUncheckedCreateInput Yes
update HospitalUpdateInput | HospitalUncheckedUpdateInput Yes

Output

Type: Hospital
Required: Yes
List: No

Location

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
latitude Float
  • -
Yes -
longitude Float
  • -
Yes -
version String
  • @default(v1)
Yes -
created_at DateTime?
  • -
No -
updated_at DateTime?
  • -
No -
Hospital Hospital[]
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Location

// Get one Location
const location = await prisma.location.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LocationWhereUniqueInput Yes

Output

Type: Location
Required: No
List: No

findFirst

Find first Location

// Get one Location
const location = await prisma.location.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LocationWhereInput No
orderBy LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput No
cursor LocationWhereUniqueInput No
take Int No
skip Int No
distinct LocationScalarFieldEnum | LocationScalarFieldEnum[] No

Output

Type: Location
Required: No
List: No

findMany

Find zero or more Location

// Get all Location
const Location = await prisma.location.findMany()
// Get first 10 Location
const Location = await prisma.location.findMany({ take: 10 })

Input

Name Type Required
where LocationWhereInput No
orderBy LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput No
cursor LocationWhereUniqueInput No
take Int No
skip Int No
distinct LocationScalarFieldEnum | LocationScalarFieldEnum[] No

Output

Type: Location
Required: Yes
List: Yes

create

Create one Location

// Create one Location
const Location = await prisma.location.create({
  data: {
    // ... data to create a Location
  }
})

Input

Name Type Required
data LocationCreateInput | LocationUncheckedCreateInput Yes

Output

Type: Location
Required: Yes
List: No

delete

Delete one Location

// Delete one Location
const Location = await prisma.location.delete({
  where: {
    // ... filter to delete one Location
  }
})

Input

Name Type Required
where LocationWhereUniqueInput Yes

Output

Type: Location
Required: No
List: No

update

Update one Location

// Update one Location
const location = await prisma.location.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LocationUpdateInput | LocationUncheckedUpdateInput Yes
where LocationWhereUniqueInput Yes

Output

Type: Location
Required: No
List: No

deleteMany

Delete zero or more Location

// Delete a few Location
const { count } = await prisma.location.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LocationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Location

const { count } = await prisma.location.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LocationUpdateManyMutationInput | LocationUncheckedUpdateManyInput Yes
where LocationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Location

// Update or create a Location
const location = await prisma.location.upsert({
  create: {
    // ... data to create a Location
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Location we want to update
  }
})

Input

Name Type Required
where LocationWhereUniqueInput Yes
create LocationCreateInput | LocationUncheckedCreateInput Yes
update LocationUpdateInput | LocationUncheckedUpdateInput Yes

Output

Type: Location
Required: Yes
List: No

LoginRecord

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
user Int
  • -
Yes -
ip_address String
  • -
Yes -
user_agent String
  • -
Yes -
login_status String
  • -
Yes -
session_id String?
  • -
No -
location String?
  • -
No -
authentication AuthenticationMethod?
  • -
No -
security_tokens String?
  • -
No -
logout_timestamp DateTime?
  • -
No -
version String
  • @default(v1)
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
devices Int?
  • -
No -
Device Device?
  • -
No -
Version Version
  • -
Yes -
OrganizationSettings OrganizationSettings[]
  • -
Yes -
User User[]
  • -
Yes -
UserSettings UserSettings[]
  • -
Yes -

Operations

findUnique

Find zero or one LoginRecord

// Get one LoginRecord
const loginRecord = await prisma.loginRecord.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoginRecordWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first LoginRecord

// Get one LoginRecord
const loginRecord = await prisma.loginRecord.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoginRecordWhereInput No
orderBy LoginRecordOrderByWithRelationInput[] | LoginRecordOrderByWithRelationInput No
cursor LoginRecordWhereUniqueInput No
take Int No
skip Int No
distinct LoginRecordScalarFieldEnum | LoginRecordScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more LoginRecord

// Get all LoginRecord
const LoginRecord = await prisma.loginRecord.findMany()
// Get first 10 LoginRecord
const LoginRecord = await prisma.loginRecord.findMany({ take: 10 })

Input

Name Type Required
where LoginRecordWhereInput No
orderBy LoginRecordOrderByWithRelationInput[] | LoginRecordOrderByWithRelationInput No
cursor LoginRecordWhereUniqueInput No
take Int No
skip Int No
distinct LoginRecordScalarFieldEnum | LoginRecordScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one LoginRecord

// Create one LoginRecord
const LoginRecord = await prisma.loginRecord.create({
  data: {
    // ... data to create a LoginRecord
  }
})

Input

Name Type Required
data LoginRecordCreateInput | LoginRecordUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one LoginRecord

// Delete one LoginRecord
const LoginRecord = await prisma.loginRecord.delete({
  where: {
    // ... filter to delete one LoginRecord
  }
})

Input

Name Type Required
where LoginRecordWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one LoginRecord

// Update one LoginRecord
const loginRecord = await prisma.loginRecord.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LoginRecordUpdateInput | LoginRecordUncheckedUpdateInput Yes
where LoginRecordWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more LoginRecord

// Delete a few LoginRecord
const { count } = await prisma.loginRecord.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LoginRecordWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one LoginRecord

const { count } = await prisma.loginRecord.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LoginRecordUpdateManyMutationInput | LoginRecordUncheckedUpdateManyInput Yes
where LoginRecordWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one LoginRecord

// Update or create a LoginRecord
const loginRecord = await prisma.loginRecord.upsert({
  create: {
    // ... data to create a LoginRecord
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the LoginRecord we want to update
  }
})

Input

Name Type Required
where LoginRecordWhereUniqueInput Yes
create LoginRecordCreateInput | LoginRecordUncheckedCreateInput Yes
update LoginRecordUpdateInput | LoginRecordUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Member

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
allergies String?
  • -
No -
complications String?
  • -
No -
medications String?
  • -
No -
blood_disorders String?
  • -
No -
club_id Int?
  • -
No -
infectious_diseases String?
  • -
No -
last_blood_donation DateTime?
  • -
No -
medical_conditions String?
  • -
No -
person_id Int?
  • -
No -
Donation Donation[]
  • -
Yes -
Club Club?
  • -
No -
Person Person?
  • -
No -
Version Version
  • -
Yes -
Request Request[]
  • -
Yes -

Operations

findUnique

Find zero or one Member

// Get one Member
const member = await prisma.member.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MemberWhereUniqueInput Yes

Output

Type: Member
Required: No
List: No

findFirst

Find first Member

// Get one Member
const member = await prisma.member.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MemberWhereInput No
orderBy MemberOrderByWithRelationInput[] | MemberOrderByWithRelationInput No
cursor MemberWhereUniqueInput No
take Int No
skip Int No
distinct MemberScalarFieldEnum | MemberScalarFieldEnum[] No

Output

Type: Member
Required: No
List: No

findMany

Find zero or more Member

// Get all Member
const Member = await prisma.member.findMany()
// Get first 10 Member
const Member = await prisma.member.findMany({ take: 10 })

Input

Name Type Required
where MemberWhereInput No
orderBy MemberOrderByWithRelationInput[] | MemberOrderByWithRelationInput No
cursor MemberWhereUniqueInput No
take Int No
skip Int No
distinct MemberScalarFieldEnum | MemberScalarFieldEnum[] No

Output

Type: Member
Required: Yes
List: Yes

create

Create one Member

// Create one Member
const Member = await prisma.member.create({
  data: {
    // ... data to create a Member
  }
})

Input

Name Type Required
data MemberCreateInput | MemberUncheckedCreateInput Yes

Output

Type: Member
Required: Yes
List: No

delete

Delete one Member

// Delete one Member
const Member = await prisma.member.delete({
  where: {
    // ... filter to delete one Member
  }
})

Input

Name Type Required
where MemberWhereUniqueInput Yes

Output

Type: Member
Required: No
List: No

update

Update one Member

// Update one Member
const member = await prisma.member.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MemberUpdateInput | MemberUncheckedUpdateInput Yes
where MemberWhereUniqueInput Yes

Output

Type: Member
Required: No
List: No

deleteMany

Delete zero or more Member

// Delete a few Member
const { count } = await prisma.member.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MemberWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Member

const { count } = await prisma.member.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MemberUpdateManyMutationInput | MemberUncheckedUpdateManyInput Yes
where MemberWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Member

// Update or create a Member
const member = await prisma.member.upsert({
  create: {
    // ... data to create a Member
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Member we want to update
  }
})

Input

Name Type Required
where MemberWhereUniqueInput Yes
create MemberCreateInput | MemberUncheckedCreateInput Yes
update MemberUpdateInput | MemberUncheckedUpdateInput Yes

Output

Type: Member
Required: Yes
List: No

Organization

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
org_type OrgType
  • -
Yes -
org_id Int
  • -
Yes -
Volunteer Json
  • -
Yes -
personId Int
  • -
Yes -
organizationSettingsId Int
  • -
Yes -
clubId Int?
  • -
No -
version String
  • @default(v1)
Yes -
Ambulance Ambulance[]
  • -
Yes -
Donation Donation[]
  • -
Yes -
Club Club?
  • -
No -
OrganizationSettings OrganizationSettings
  • -
Yes -
Person Person
  • -
Yes -
Version Version
  • -
Yes -
Support Support[]
  • -
Yes -
SupportMessage SupportMessage[]
  • -
Yes -
Team Team[]
  • -
Yes -

Operations

findUnique

Find zero or one Organization

// Get one Organization
const organization = await prisma.organization.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Organization

// Get one Organization
const organization = await prisma.organization.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationWhereInput No
orderBy OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput No
cursor OrganizationWhereUniqueInput No
take Int No
skip Int No
distinct OrganizationScalarFieldEnum | OrganizationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Organization

// Get all Organization
const Organization = await prisma.organization.findMany()
// Get first 10 Organization
const Organization = await prisma.organization.findMany({ take: 10 })

Input

Name Type Required
where OrganizationWhereInput No
orderBy OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput No
cursor OrganizationWhereUniqueInput No
take Int No
skip Int No
distinct OrganizationScalarFieldEnum | OrganizationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Organization

// Create one Organization
const Organization = await prisma.organization.create({
  data: {
    // ... data to create a Organization
  }
})

Input

Name Type Required
data OrganizationCreateInput | OrganizationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Organization

// Delete one Organization
const Organization = await prisma.organization.delete({
  where: {
    // ... filter to delete one Organization
  }
})

Input

Name Type Required
where OrganizationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Organization

// Update one Organization
const organization = await prisma.organization.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrganizationUpdateInput | OrganizationUncheckedUpdateInput Yes
where OrganizationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Organization

// Delete a few Organization
const { count } = await prisma.organization.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Organization

const { count } = await prisma.organization.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyInput Yes
where OrganizationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Organization

// Update or create a Organization
const organization = await prisma.organization.upsert({
  create: {
    // ... data to create a Organization
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Organization we want to update
  }
})

Input

Name Type Required
where OrganizationWhereUniqueInput Yes
create OrganizationCreateInput | OrganizationUncheckedCreateInput Yes
update OrganizationUpdateInput | OrganizationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

OrganizationSettings

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
language Language
  • @default(ENGLISH)
Yes -
time_format TimeFormat
  • @default(H12PM)
Yes -
date_format DateFormat
  • @default(DY_MONTH_COMMA)
Yes -
timezone Timezone
  • @default(GMT_06_Astana_Dhaka_Almaty_Urumqi)
Yes -
theme Theme?
  • @default(LIGHT)
No -
email_notifications Boolean
  • @default(true)
Yes -
phone_notification Boolean
  • @default(true)
Yes -
push_notifications Boolean
  • @default(true)
Yes -
two_factor_auth Boolean?
  • -
No -
loginRecordId Int?
  • -
No -
accountDeactivation Boolean?
  • -
No -
avatar String?
  • -
No -
clearBrowsingData Boolean?
  • -
No -
dataRetentionDays Int?
  • -
No -
dataSharing Boolean?
  • -
No -
high_contrast_mode Boolean?
  • -
No -
in_app_notifications Boolean?
  • @default(true)
No -
key_board_shortcut Boolean?
  • -
No -
notification_frequency String?
  • -
No -
notification_sound String?
  • -
No -
notification_vibrate Boolean?
  • @default(true)
No -
password_reset Boolean?
  • -
No -
security_answer String?
  • -
No -
security_question String?
  • -
No -
username String?
  • -
No -
version String
  • @default(v1)
Yes -
Organization Organization[]
  • -
Yes -
LoginRecord LoginRecord?
  • -
No -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one OrganizationSettings

// Get one OrganizationSettings
const organizationSettings = await prisma.organizationSettings.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationSettingsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first OrganizationSettings

// Get one OrganizationSettings
const organizationSettings = await prisma.organizationSettings.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationSettingsWhereInput No
orderBy OrganizationSettingsOrderByWithRelationInput[] | OrganizationSettingsOrderByWithRelationInput No
cursor OrganizationSettingsWhereUniqueInput No
take Int No
skip Int No
distinct OrganizationSettingsScalarFieldEnum | OrganizationSettingsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more OrganizationSettings

// Get all OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.findMany()
// Get first 10 OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.findMany({ take: 10 })

Input

Name Type Required
where OrganizationSettingsWhereInput No
orderBy OrganizationSettingsOrderByWithRelationInput[] | OrganizationSettingsOrderByWithRelationInput No
cursor OrganizationSettingsWhereUniqueInput No
take Int No
skip Int No
distinct OrganizationSettingsScalarFieldEnum | OrganizationSettingsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one OrganizationSettings

// Create one OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.create({
  data: {
    // ... data to create a OrganizationSettings
  }
})

Input

Name Type Required
data OrganizationSettingsCreateInput | OrganizationSettingsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one OrganizationSettings

// Delete one OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.delete({
  where: {
    // ... filter to delete one OrganizationSettings
  }
})

Input

Name Type Required
where OrganizationSettingsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one OrganizationSettings

// Update one OrganizationSettings
const organizationSettings = await prisma.organizationSettings.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrganizationSettingsUpdateInput | OrganizationSettingsUncheckedUpdateInput Yes
where OrganizationSettingsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more OrganizationSettings

// Delete a few OrganizationSettings
const { count } = await prisma.organizationSettings.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrganizationSettingsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one OrganizationSettings

const { count } = await prisma.organizationSettings.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrganizationSettingsUpdateManyMutationInput | OrganizationSettingsUncheckedUpdateManyInput Yes
where OrganizationSettingsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one OrganizationSettings

// Update or create a OrganizationSettings
const organizationSettings = await prisma.organizationSettings.upsert({
  create: {
    // ... data to create a OrganizationSettings
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the OrganizationSettings we want to update
  }
})

Input

Name Type Required
where OrganizationSettingsWhereUniqueInput Yes
create OrganizationSettingsCreateInput | OrganizationSettingsUncheckedCreateInput Yes
update OrganizationSettingsUpdateInput | OrganizationSettingsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Person

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
first_name String
  • -
Yes -
last_name String?
  • -
No -
father_name String?
  • -
No -
mother_name String?
  • -
No -
profession String?
  • -
No -
dob DateTime?
  • -
No -
gender Gender?
  • -
No -
version String
  • @default(v1)
Yes -
avatar String?
  • -
No -
contact_id Int
  • -
Yes -
teamId Int?
  • -
No -
bid String?
  • -
No -
driving String?
  • -
No -
nid String?
  • -
No -
passport String?
  • -
No -
Ambulance Ambulance[]
  • -
Yes -
BloodCenter BloodCenter[]
  • -
Yes -
BloodDonation BloodDonation[]
  • -
Yes -
Club_Club_chairmanToPerson Club[]
  • -
Yes -
Club_Club_founderToPerson Club[]
  • -
Yes -
Club_Club_vice_chairmanToPerson Club[]
  • -
Yes -
Contact_Contact_personToPerson Contact[]
  • -
Yes -
Donation Donation[]
  • -
Yes -
Member Member[]
  • -
Yes -
Organization Organization[]
  • -
Yes -
Contact_Person_contact_idToContact Contact
  • -
Yes -
Team_Person_teamIdToTeam Team?
  • -
No -
Version Version
  • -
Yes -
Request Request[]
  • -
Yes -
SupportMessage SupportMessage[]
  • -
Yes -
Team_Team_membersToPerson Team[]
  • -
Yes -
User User[]
  • -
Yes -

Operations

findUnique

Find zero or one Person

// Get one Person
const person = await prisma.person.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PersonWhereUniqueInput Yes

Output

Type: Person
Required: No
List: No

findFirst

Find first Person

// Get one Person
const person = await prisma.person.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PersonWhereInput No
orderBy PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput No
cursor PersonWhereUniqueInput No
take Int No
skip Int No
distinct PersonScalarFieldEnum | PersonScalarFieldEnum[] No

Output

Type: Person
Required: No
List: No

findMany

Find zero or more Person

// Get all Person
const Person = await prisma.person.findMany()
// Get first 10 Person
const Person = await prisma.person.findMany({ take: 10 })

Input

Name Type Required
where PersonWhereInput No
orderBy PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput No
cursor PersonWhereUniqueInput No
take Int No
skip Int No
distinct PersonScalarFieldEnum | PersonScalarFieldEnum[] No

Output

Type: Person
Required: Yes
List: Yes

create

Create one Person

// Create one Person
const Person = await prisma.person.create({
  data: {
    // ... data to create a Person
  }
})

Input

Name Type Required
data PersonCreateInput | PersonUncheckedCreateInput Yes

Output

Type: Person
Required: Yes
List: No

delete

Delete one Person

// Delete one Person
const Person = await prisma.person.delete({
  where: {
    // ... filter to delete one Person
  }
})

Input

Name Type Required
where PersonWhereUniqueInput Yes

Output

Type: Person
Required: No
List: No

update

Update one Person

// Update one Person
const person = await prisma.person.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PersonUpdateInput | PersonUncheckedUpdateInput Yes
where PersonWhereUniqueInput Yes

Output

Type: Person
Required: No
List: No

deleteMany

Delete zero or more Person

// Delete a few Person
const { count } = await prisma.person.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PersonWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Person

const { count } = await prisma.person.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PersonUpdateManyMutationInput | PersonUncheckedUpdateManyInput Yes
where PersonWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Person

// Update or create a Person
const person = await prisma.person.upsert({
  create: {
    // ... data to create a Person
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Person we want to update
  }
})

Input

Name Type Required
where PersonWhereUniqueInput Yes
create PersonCreateInput | PersonUncheckedCreateInput Yes
update PersonUpdateInput | PersonUncheckedUpdateInput Yes

Output

Type: Person
Required: Yes
List: No

Request

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
health_issue String
  • -
Yes -
blood_group BloodGroup
  • @default(A_POS)
Yes -
quantity Int
  • @default(1)
Yes -
donation_type String
  • -
Yes -
datetime DateTime
  • @default(now())
Yes -
hospital_name String
  • -
Yes -
hospital_address String
  • -
Yes -
hospital_phone String
  • -
Yes -
hospital_email String
  • -
Yes -
version String
  • @default(v1)
Yes -
memberId Int?
  • -
No -
personId Int
  • -
Yes -
Member Member?
  • -
No -
Person Person
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Request

// Get one Request
const request = await prisma.request.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RequestWhereUniqueInput Yes

Output

Type: Request
Required: No
List: No

findFirst

Find first Request

// Get one Request
const request = await prisma.request.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RequestWhereInput No
orderBy RequestOrderByWithRelationInput[] | RequestOrderByWithRelationInput No
cursor RequestWhereUniqueInput No
take Int No
skip Int No
distinct RequestScalarFieldEnum | RequestScalarFieldEnum[] No

Output

Type: Request
Required: No
List: No

findMany

Find zero or more Request

// Get all Request
const Request = await prisma.request.findMany()
// Get first 10 Request
const Request = await prisma.request.findMany({ take: 10 })

Input

Name Type Required
where RequestWhereInput No
orderBy RequestOrderByWithRelationInput[] | RequestOrderByWithRelationInput No
cursor RequestWhereUniqueInput No
take Int No
skip Int No
distinct RequestScalarFieldEnum | RequestScalarFieldEnum[] No

Output

Type: Request
Required: Yes
List: Yes

create

Create one Request

// Create one Request
const Request = await prisma.request.create({
  data: {
    // ... data to create a Request
  }
})

Input

Name Type Required
data RequestCreateInput | RequestUncheckedCreateInput Yes

Output

Type: Request
Required: Yes
List: No

delete

Delete one Request

// Delete one Request
const Request = await prisma.request.delete({
  where: {
    // ... filter to delete one Request
  }
})

Input

Name Type Required
where RequestWhereUniqueInput Yes

Output

Type: Request
Required: No
List: No

update

Update one Request

// Update one Request
const request = await prisma.request.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RequestUpdateInput | RequestUncheckedUpdateInput Yes
where RequestWhereUniqueInput Yes

Output

Type: Request
Required: No
List: No

deleteMany

Delete zero or more Request

// Delete a few Request
const { count } = await prisma.request.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RequestWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Request

const { count } = await prisma.request.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RequestUpdateManyMutationInput | RequestUncheckedUpdateManyInput Yes
where RequestWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Request

// Update or create a Request
const request = await prisma.request.upsert({
  create: {
    // ... data to create a Request
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Request we want to update
  }
})

Input

Name Type Required
where RequestWhereUniqueInput Yes
create RequestCreateInput | RequestUncheckedCreateInput Yes
update RequestUpdateInput | RequestUncheckedUpdateInput Yes

Output

Type: Request
Required: Yes
List: No

SecurityQuestion

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
question String
  • -
Yes -
answer String
  • -
Yes -
userId Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
User User
  • -
Yes -
Version Version
  • -
Yes -
UserSettings UserSettings[]
  • -
Yes -

Operations

findUnique

Find zero or one SecurityQuestion

// Get one SecurityQuestion
const securityQuestion = await prisma.securityQuestion.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SecurityQuestionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SecurityQuestion

// Get one SecurityQuestion
const securityQuestion = await prisma.securityQuestion.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SecurityQuestionWhereInput No
orderBy SecurityQuestionOrderByWithRelationInput[] | SecurityQuestionOrderByWithRelationInput No
cursor SecurityQuestionWhereUniqueInput No
take Int No
skip Int No
distinct SecurityQuestionScalarFieldEnum | SecurityQuestionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SecurityQuestion

// Get all SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.findMany()
// Get first 10 SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.findMany({ take: 10 })

Input

Name Type Required
where SecurityQuestionWhereInput No
orderBy SecurityQuestionOrderByWithRelationInput[] | SecurityQuestionOrderByWithRelationInput No
cursor SecurityQuestionWhereUniqueInput No
take Int No
skip Int No
distinct SecurityQuestionScalarFieldEnum | SecurityQuestionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SecurityQuestion

// Create one SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.create({
  data: {
    // ... data to create a SecurityQuestion
  }
})

Input

Name Type Required
data SecurityQuestionCreateInput | SecurityQuestionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SecurityQuestion

// Delete one SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.delete({
  where: {
    // ... filter to delete one SecurityQuestion
  }
})

Input

Name Type Required
where SecurityQuestionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SecurityQuestion

// Update one SecurityQuestion
const securityQuestion = await prisma.securityQuestion.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SecurityQuestionUpdateInput | SecurityQuestionUncheckedUpdateInput Yes
where SecurityQuestionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SecurityQuestion

// Delete a few SecurityQuestion
const { count } = await prisma.securityQuestion.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SecurityQuestionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SecurityQuestion

const { count } = await prisma.securityQuestion.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SecurityQuestionUpdateManyMutationInput | SecurityQuestionUncheckedUpdateManyInput Yes
where SecurityQuestionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SecurityQuestion

// Update or create a SecurityQuestion
const securityQuestion = await prisma.securityQuestion.upsert({
  create: {
    // ... data to create a SecurityQuestion
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SecurityQuestion we want to update
  }
})

Input

Name Type Required
where SecurityQuestionWhereUniqueInput Yes
create SecurityQuestionCreateInput | SecurityQuestionUncheckedCreateInput Yes
update SecurityQuestionUpdateInput | SecurityQuestionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Name Type Attributes Required Comment

Find zero or one SocialMediaLinks

// Get one SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SocialMediaLinksWhereUniqueInput Yes

Output

Required: No
List: No

Find first SocialMediaLinks

// Get one SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SocialMediaLinksWhereInput No
orderBy SocialMediaLinksOrderByWithRelationInput[] | SocialMediaLinksOrderByWithRelationInput No
cursor SocialMediaLinksWhereUniqueInput No
take Int No
skip Int No
distinct SocialMediaLinksScalarFieldEnum | SocialMediaLinksScalarFieldEnum[] No

Output

Required: No
List: No

Find zero or more SocialMediaLinks

// Get all SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.findMany()
// Get first 10 SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.findMany({ take: 10 })

Input

Name Type Required
where SocialMediaLinksWhereInput No
orderBy SocialMediaLinksOrderByWithRelationInput[] | SocialMediaLinksOrderByWithRelationInput No
cursor SocialMediaLinksWhereUniqueInput No
take Int No
skip Int No
distinct SocialMediaLinksScalarFieldEnum | SocialMediaLinksScalarFieldEnum[] No

Output

Required: Yes
List: Yes

Create one SocialMediaLinks

// Create one SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.create({
  data: {
    // ... data to create a SocialMediaLinks
  }
})

Input

Name Type Required
data SocialMediaLinksCreateInput | SocialMediaLinksUncheckedCreateInput Yes

Output

Required: Yes
List: No

Delete one SocialMediaLinks

// Delete one SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.delete({
  where: {
    // ... filter to delete one SocialMediaLinks
  }
})

Input

Name Type Required
where SocialMediaLinksWhereUniqueInput Yes

Output

Required: No
List: No

Update one SocialMediaLinks

// Update one SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SocialMediaLinksUpdateInput | SocialMediaLinksUncheckedUpdateInput Yes
where SocialMediaLinksWhereUniqueInput Yes

Output

Required: No
List: No

Delete zero or more SocialMediaLinks

// Delete a few SocialMediaLinks
const { count } = await prisma.socialMediaLinks.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SocialMediaLinksWhereInput No

Output

Required: Yes
List: No

Update zero or one SocialMediaLinks

const { count } = await prisma.socialMediaLinks.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SocialMediaLinksUpdateManyMutationInput | SocialMediaLinksUncheckedUpdateManyInput Yes
where SocialMediaLinksWhereInput No

Output

Required: Yes
List: No

Create or update one SocialMediaLinks

// Update or create a SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.upsert({
  create: {
    // ... data to create a SocialMediaLinks
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SocialMediaLinks we want to update
  }
})

Input

Name Type Required
where SocialMediaLinksWhereUniqueInput Yes
create SocialMediaLinksCreateInput | SocialMediaLinksUncheckedCreateInput Yes
update SocialMediaLinksUpdateInput | SocialMediaLinksUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Support

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
organization Int
  • -
Yes -
messages String?
  • -
No -
status String?
  • -
No -
priority Int
  • -
Yes -
subject String?
  • -
No -
Organization Organization
  • -
Yes -
Version Version
  • -
Yes -
SupportMessage SupportMessage[]
  • -
Yes -

Operations

findUnique

Find zero or one Support

// Get one Support
const support = await prisma.support.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SupportWhereUniqueInput Yes

Output

Type: Support
Required: No
List: No

findFirst

Find first Support

// Get one Support
const support = await prisma.support.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SupportWhereInput No
orderBy SupportOrderByWithRelationInput[] | SupportOrderByWithRelationInput No
cursor SupportWhereUniqueInput No
take Int No
skip Int No
distinct SupportScalarFieldEnum | SupportScalarFieldEnum[] No

Output

Type: Support
Required: No
List: No

findMany

Find zero or more Support

// Get all Support
const Support = await prisma.support.findMany()
// Get first 10 Support
const Support = await prisma.support.findMany({ take: 10 })

Input

Name Type Required
where SupportWhereInput No
orderBy SupportOrderByWithRelationInput[] | SupportOrderByWithRelationInput No
cursor SupportWhereUniqueInput No
take Int No
skip Int No
distinct SupportScalarFieldEnum | SupportScalarFieldEnum[] No

Output

Type: Support
Required: Yes
List: Yes

create

Create one Support

// Create one Support
const Support = await prisma.support.create({
  data: {
    // ... data to create a Support
  }
})

Input

Name Type Required
data SupportCreateInput | SupportUncheckedCreateInput Yes

Output

Type: Support
Required: Yes
List: No

delete

Delete one Support

// Delete one Support
const Support = await prisma.support.delete({
  where: {
    // ... filter to delete one Support
  }
})

Input

Name Type Required
where SupportWhereUniqueInput Yes

Output

Type: Support
Required: No
List: No

update

Update one Support

// Update one Support
const support = await prisma.support.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SupportUpdateInput | SupportUncheckedUpdateInput Yes
where SupportWhereUniqueInput Yes

Output

Type: Support
Required: No
List: No

deleteMany

Delete zero or more Support

// Delete a few Support
const { count } = await prisma.support.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SupportWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Support

const { count } = await prisma.support.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SupportUpdateManyMutationInput | SupportUncheckedUpdateManyInput Yes
where SupportWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Support

// Update or create a Support
const support = await prisma.support.upsert({
  create: {
    // ... data to create a Support
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Support we want to update
  }
})

Input

Name Type Required
where SupportWhereUniqueInput Yes
create SupportCreateInput | SupportUncheckedCreateInput Yes
update SupportUpdateInput | SupportUncheckedUpdateInput Yes

Output

Type: Support
Required: Yes
List: No

SupportMessage

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
created_at DateTime
  • -
Yes -
updated_at DateTime
  • -
Yes -
organization Int
  • -
Yes -
support Int
  • -
Yes -
message String
  • -
Yes -
author Int
  • -
Yes -
version String
  • @default(v1)
Yes -
Person Person
  • -
Yes -
Organization Organization
  • -
Yes -
Support Support
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one SupportMessage

// Get one SupportMessage
const supportMessage = await prisma.supportMessage.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SupportMessageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first SupportMessage

// Get one SupportMessage
const supportMessage = await prisma.supportMessage.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SupportMessageWhereInput No
orderBy SupportMessageOrderByWithRelationInput[] | SupportMessageOrderByWithRelationInput No
cursor SupportMessageWhereUniqueInput No
take Int No
skip Int No
distinct SupportMessageScalarFieldEnum | SupportMessageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more SupportMessage

// Get all SupportMessage
const SupportMessage = await prisma.supportMessage.findMany()
// Get first 10 SupportMessage
const SupportMessage = await prisma.supportMessage.findMany({ take: 10 })

Input

Name Type Required
where SupportMessageWhereInput No
orderBy SupportMessageOrderByWithRelationInput[] | SupportMessageOrderByWithRelationInput No
cursor SupportMessageWhereUniqueInput No
take Int No
skip Int No
distinct SupportMessageScalarFieldEnum | SupportMessageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one SupportMessage

// Create one SupportMessage
const SupportMessage = await prisma.supportMessage.create({
  data: {
    // ... data to create a SupportMessage
  }
})

Input

Name Type Required
data SupportMessageCreateInput | SupportMessageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one SupportMessage

// Delete one SupportMessage
const SupportMessage = await prisma.supportMessage.delete({
  where: {
    // ... filter to delete one SupportMessage
  }
})

Input

Name Type Required
where SupportMessageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one SupportMessage

// Update one SupportMessage
const supportMessage = await prisma.supportMessage.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SupportMessageUpdateInput | SupportMessageUncheckedUpdateInput Yes
where SupportMessageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more SupportMessage

// Delete a few SupportMessage
const { count } = await prisma.supportMessage.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SupportMessageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one SupportMessage

const { count } = await prisma.supportMessage.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyInput Yes
where SupportMessageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one SupportMessage

// Update or create a SupportMessage
const supportMessage = await prisma.supportMessage.upsert({
  create: {
    // ... data to create a SupportMessage
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the SupportMessage we want to update
  }
})

Input

Name Type Required
where SupportMessageWhereUniqueInput Yes
create SupportMessageCreateInput | SupportMessageUncheckedCreateInput Yes
update SupportMessageUpdateInput | SupportMessageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Team

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
started_at DateTime
  • -
Yes -
ended_at DateTime
  • -
Yes -
organization Int
  • -
Yes -
version String
  • @default(v1)
Yes -
members Int
  • -
Yes -
status String
  • -
Yes -
Person_Person_teamIdToTeam Person[]
  • -
Yes -
Person_Team_membersToPerson Person
  • -
Yes -
Organization Organization
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one Team

// Get one Team
const team = await prisma.team.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

findFirst

Find first Team

// Get one Team
const team = await prisma.team.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereInput No
orderBy TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput No
cursor TeamWhereUniqueInput No
take Int No
skip Int No
distinct TeamScalarFieldEnum | TeamScalarFieldEnum[] No

Output

Type: Team
Required: No
List: No

findMany

Find zero or more Team

// Get all Team
const Team = await prisma.team.findMany()
// Get first 10 Team
const Team = await prisma.team.findMany({ take: 10 })

Input

Name Type Required
where TeamWhereInput No
orderBy TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput No
cursor TeamWhereUniqueInput No
take Int No
skip Int No
distinct TeamScalarFieldEnum | TeamScalarFieldEnum[] No

Output

Type: Team
Required: Yes
List: Yes

create

Create one Team

// Create one Team
const Team = await prisma.team.create({
  data: {
    // ... data to create a Team
  }
})

Input

Name Type Required
data TeamCreateInput | TeamUncheckedCreateInput Yes

Output

Type: Team
Required: Yes
List: No

delete

Delete one Team

// Delete one Team
const Team = await prisma.team.delete({
  where: {
    // ... filter to delete one Team
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

update

Update one Team

// Update one Team
const team = await prisma.team.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamUpdateInput | TeamUncheckedUpdateInput Yes
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

deleteMany

Delete zero or more Team

// Delete a few Team
const { count } = await prisma.team.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Team

const { count } = await prisma.team.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyInput Yes
where TeamWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Team

// Update or create a Team
const team = await prisma.team.upsert({
  create: {
    // ... data to create a Team
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Team we want to update
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes
create TeamCreateInput | TeamUncheckedCreateInput Yes
update TeamUpdateInput | TeamUncheckedUpdateInput Yes

Output

Type: Team
Required: Yes
List: No

TwoFactorAuth

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
is_enabled Boolean
  • -
Yes -
secret_key String?
  • -
No -
user_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
Version Version
  • -
Yes -
User User[]
  • -
Yes -

Operations

findUnique

Find zero or one TwoFactorAuth

// Get one TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TwoFactorAuthWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first TwoFactorAuth

// Get one TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TwoFactorAuthWhereInput No
orderBy TwoFactorAuthOrderByWithRelationInput[] | TwoFactorAuthOrderByWithRelationInput No
cursor TwoFactorAuthWhereUniqueInput No
take Int No
skip Int No
distinct TwoFactorAuthScalarFieldEnum | TwoFactorAuthScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more TwoFactorAuth

// Get all TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.findMany()
// Get first 10 TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.findMany({ take: 10 })

Input

Name Type Required
where TwoFactorAuthWhereInput No
orderBy TwoFactorAuthOrderByWithRelationInput[] | TwoFactorAuthOrderByWithRelationInput No
cursor TwoFactorAuthWhereUniqueInput No
take Int No
skip Int No
distinct TwoFactorAuthScalarFieldEnum | TwoFactorAuthScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one TwoFactorAuth

// Create one TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.create({
  data: {
    // ... data to create a TwoFactorAuth
  }
})

Input

Name Type Required
data TwoFactorAuthCreateInput | TwoFactorAuthUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one TwoFactorAuth

// Delete one TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.delete({
  where: {
    // ... filter to delete one TwoFactorAuth
  }
})

Input

Name Type Required
where TwoFactorAuthWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one TwoFactorAuth

// Update one TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TwoFactorAuthUpdateInput | TwoFactorAuthUncheckedUpdateInput Yes
where TwoFactorAuthWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more TwoFactorAuth

// Delete a few TwoFactorAuth
const { count } = await prisma.twoFactorAuth.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TwoFactorAuthWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one TwoFactorAuth

const { count } = await prisma.twoFactorAuth.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TwoFactorAuthUpdateManyMutationInput | TwoFactorAuthUncheckedUpdateManyInput Yes
where TwoFactorAuthWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one TwoFactorAuth

// Update or create a TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.upsert({
  create: {
    // ... data to create a TwoFactorAuth
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the TwoFactorAuth we want to update
  }
})

Input

Name Type Required
where TwoFactorAuthWhereUniqueInput Yes
create TwoFactorAuthCreateInput | TwoFactorAuthUncheckedCreateInput Yes
update TwoFactorAuthUpdateInput | TwoFactorAuthUncheckedUpdateInput Yes

Output

Required: Yes
List: No

User

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
username String?
  • @unique
No -
email String
  • @unique
Yes -
password String
  • -
Yes -
status AccountStatus
  • @default(PENDING)
Yes -
ip String
  • -
Yes -
two_factor_auth Int
  • -
Yes -
social_login Int
  • -
Yes -
logins Int
  • -
Yes -
person Int
  • -
Yes -
settings Int
  • -
Yes -
version String
  • @default(v1)
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
SecurityQuestion SecurityQuestion[]
  • -
Yes -
LoginRecord LoginRecord
  • -
Yes -
Person Person
  • -
Yes -
TwoFactorAuth TwoFactorAuth
  • -
Yes -
UserSettings UserSettings
  • -
Yes -
Version Version
  • -
Yes -
UserRole UserRole[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

UserRole

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • @default(user)
Yes -
user_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
version String
  • @default(v1)
Yes -
User User
  • -
Yes -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one UserRole

// Get one UserRole
const userRole = await prisma.userRole.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserRoleWhereUniqueInput Yes

Output

Type: UserRole
Required: No
List: No

findFirst

Find first UserRole

// Get one UserRole
const userRole = await prisma.userRole.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserRoleWhereInput No
orderBy UserRoleOrderByWithRelationInput[] | UserRoleOrderByWithRelationInput No
cursor UserRoleWhereUniqueInput No
take Int No
skip Int No
distinct UserRoleScalarFieldEnum | UserRoleScalarFieldEnum[] No

Output

Type: UserRole
Required: No
List: No

findMany

Find zero or more UserRole

// Get all UserRole
const UserRole = await prisma.userRole.findMany()
// Get first 10 UserRole
const UserRole = await prisma.userRole.findMany({ take: 10 })

Input

Name Type Required
where UserRoleWhereInput No
orderBy UserRoleOrderByWithRelationInput[] | UserRoleOrderByWithRelationInput No
cursor UserRoleWhereUniqueInput No
take Int No
skip Int No
distinct UserRoleScalarFieldEnum | UserRoleScalarFieldEnum[] No

Output

Type: UserRole
Required: Yes
List: Yes

create

Create one UserRole

// Create one UserRole
const UserRole = await prisma.userRole.create({
  data: {
    // ... data to create a UserRole
  }
})

Input

Name Type Required
data UserRoleCreateInput | UserRoleUncheckedCreateInput Yes

Output

Type: UserRole
Required: Yes
List: No

delete

Delete one UserRole

// Delete one UserRole
const UserRole = await prisma.userRole.delete({
  where: {
    // ... filter to delete one UserRole
  }
})

Input

Name Type Required
where UserRoleWhereUniqueInput Yes

Output

Type: UserRole
Required: No
List: No

update

Update one UserRole

// Update one UserRole
const userRole = await prisma.userRole.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserRoleUpdateInput | UserRoleUncheckedUpdateInput Yes
where UserRoleWhereUniqueInput Yes

Output

Type: UserRole
Required: No
List: No

deleteMany

Delete zero or more UserRole

// Delete a few UserRole
const { count } = await prisma.userRole.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserRoleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one UserRole

const { count } = await prisma.userRole.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyInput Yes
where UserRoleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one UserRole

// Update or create a UserRole
const userRole = await prisma.userRole.upsert({
  create: {
    // ... data to create a UserRole
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserRole we want to update
  }
})

Input

Name Type Required
where UserRoleWhereUniqueInput Yes
create UserRoleCreateInput | UserRoleUncheckedCreateInput Yes
update UserRoleUpdateInput | UserRoleUncheckedUpdateInput Yes

Output

Type: UserRole
Required: Yes
List: No

UserSettings

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • -
Yes -
language Language
  • @default(ENGLISH)
Yes -
time_format TimeFormat
  • @default(H12PM)
Yes -
date_format DateFormat
  • @default(DY_MONTH_COMMA)
Yes -
timezone Timezone
  • @default(GMT_06_Astana_Dhaka_Almaty_Urumqi)
Yes -
theme Theme?
  • @default(LIGHT)
No -
email_notifications Boolean
  • @default(true)
Yes -
phone_notification Boolean
  • @default(true)
Yes -
push_notifications Boolean
  • @default(true)
Yes -
two_factor_auth Boolean?
  • -
No -
login_record_id Int
  • -
Yes -
high_contrast_mode Boolean?
  • -
No -
in_app_notifications Boolean?
  • @default(true)
No -
key_board_shortcut Boolean?
  • -
No -
notification_frequency String?
  • -
No -
notification_sound String?
  • -
No -
notification_vibrate Boolean?
  • @default(true)
No -
password_reset Boolean?
  • -
No -
version String
  • @default(v1)
Yes -
security_question Int?
  • -
No -
User User[]
  • -
Yes -
LoginRecord LoginRecord
  • -
Yes -
SecurityQuestion SecurityQuestion?
  • -
No -
Version Version
  • -
Yes -

Operations

findUnique

Find zero or one UserSettings

// Get one UserSettings
const userSettings = await prisma.userSettings.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserSettingsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first UserSettings

// Get one UserSettings
const userSettings = await prisma.userSettings.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserSettingsWhereInput No
orderBy UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput No
cursor UserSettingsWhereUniqueInput No
take Int No
skip Int No
distinct UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more UserSettings

// Get all UserSettings
const UserSettings = await prisma.userSettings.findMany()
// Get first 10 UserSettings
const UserSettings = await prisma.userSettings.findMany({ take: 10 })

Input

Name Type Required
where UserSettingsWhereInput No
orderBy UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput No
cursor UserSettingsWhereUniqueInput No
take Int No
skip Int No
distinct UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one UserSettings

// Create one UserSettings
const UserSettings = await prisma.userSettings.create({
  data: {
    // ... data to create a UserSettings
  }
})

Input

Name Type Required
data UserSettingsCreateInput | UserSettingsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one UserSettings

// Delete one UserSettings
const UserSettings = await prisma.userSettings.delete({
  where: {
    // ... filter to delete one UserSettings
  }
})

Input

Name Type Required
where UserSettingsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one UserSettings

// Update one UserSettings
const userSettings = await prisma.userSettings.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput Yes
where UserSettingsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more UserSettings

// Delete a few UserSettings
const { count } = await prisma.userSettings.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserSettingsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one UserSettings

const { count } = await prisma.userSettings.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyInput Yes
where UserSettingsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one UserSettings

// Update or create a UserSettings
const userSettings = await prisma.userSettings.upsert({
  create: {
    // ... data to create a UserSettings
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the UserSettings we want to update
  }
})

Input

Name Type Required
where UserSettingsWhereUniqueInput Yes
create UserSettingsCreateInput | UserSettingsUncheckedCreateInput Yes
update UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Version

Name Value
@@id
  • id
  • slug

Fields

Name Type Attributes Required Comment
id Int
  • @unique
Yes -
slug String
  • @unique
Yes -
title String
  • -
Yes -
description String?
  • -
No -
created_at DateTime
  • -
Yes -
updated_at DateTime
  • -
Yes -
version String?
  • -
No -
Ambulance Ambulance[]
  • -
Yes -
BloodCenter BloodCenter[]
  • -
Yes -
BloodDonation BloodDonation[]
  • -
Yes -
Club Club[]
  • -
Yes -
Contact Contact[]
  • -
Yes -
Country Country[]
  • -
Yes -
Device Device[]
  • -
Yes -
Donation Donation[]
  • -
Yes -
Hospital Hospital[]
  • -
Yes -
Location Location[]
  • -
Yes -
LoginRecord LoginRecord[]
  • -
Yes -
Member Member[]
  • -
Yes -
Organization Organization[]
  • -
Yes -
OrganizationSettings OrganizationSettings[]
  • -
Yes -
Person Person[]
  • -
Yes -
Request Request[]
  • -
Yes -
SecurityQuestion SecurityQuestion[]
  • -
Yes -
Support Support[]
  • -
Yes -
SupportMessage SupportMessage[]
  • -
Yes -
Team Team[]
  • -
Yes -
TwoFactorAuth TwoFactorAuth[]
  • -
Yes -
User User[]
  • -
Yes -
UserRole UserRole[]
  • -
Yes -
UserSettings UserSettings[]
  • -
Yes -

Operations

findUnique

Find zero or one Version

// Get one Version
const version = await prisma.version.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VersionWhereUniqueInput Yes

Output

Type: Version
Required: No
List: No

findFirst

Find first Version

// Get one Version
const version = await prisma.version.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VersionWhereInput No
orderBy VersionOrderByWithRelationInput[] | VersionOrderByWithRelationInput No
cursor VersionWhereUniqueInput No
take Int No
skip Int No
distinct VersionScalarFieldEnum | VersionScalarFieldEnum[] No

Output

Type: Version
Required: No
List: No

findMany

Find zero or more Version

// Get all Version
const Version = await prisma.version.findMany()
// Get first 10 Version
const Version = await prisma.version.findMany({ take: 10 })

Input

Name Type Required
where VersionWhereInput No
orderBy VersionOrderByWithRelationInput[] | VersionOrderByWithRelationInput No
cursor VersionWhereUniqueInput No
take Int No
skip Int No
distinct VersionScalarFieldEnum | VersionScalarFieldEnum[] No

Output

Type: Version
Required: Yes
List: Yes

create

Create one Version

// Create one Version
const Version = await prisma.version.create({
  data: {
    // ... data to create a Version
  }
})

Input

Name Type Required
data VersionCreateInput | VersionUncheckedCreateInput Yes

Output

Type: Version
Required: Yes
List: No

delete

Delete one Version

// Delete one Version
const Version = await prisma.version.delete({
  where: {
    // ... filter to delete one Version
  }
})

Input

Name Type Required
where VersionWhereUniqueInput Yes

Output

Type: Version
Required: No
List: No

update

Update one Version

// Update one Version
const version = await prisma.version.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VersionUpdateInput | VersionUncheckedUpdateInput Yes
where VersionWhereUniqueInput Yes

Output

Type: Version
Required: No
List: No

deleteMany

Delete zero or more Version

// Delete a few Version
const { count } = await prisma.version.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VersionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Version

const { count } = await prisma.version.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VersionUpdateManyMutationInput | VersionUncheckedUpdateManyInput Yes
where VersionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Version

// Update or create a Version
const version = await prisma.version.upsert({
  create: {
    // ... data to create a Version
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Version we want to update
  }
})

Input

Name Type Required
where VersionWhereUniqueInput Yes
create VersionCreateInput | VersionUncheckedCreateInput Yes
update VersionUpdateInput | VersionUncheckedUpdateInput Yes

Output

Type: Version
Required: Yes
List: No

Types

Input Types

AccountWhereInput

Name Type Nullable
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
userId StringNullableFilter | String | Null Yes
type StringNullableFilter | String | Null Yes
provider StringNullableFilter | String | Null Yes
providerAccountId StringNullableFilter | String | Null Yes
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at BigIntNullableFilter | BigInt | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringFilter | String No
session_state StringNullableFilter | String | Null Yes

AccountOrderByWithRelationInput

Name Type Nullable
userId SortOrder | SortOrderInput No
type SortOrder | SortOrderInput No
provider SortOrder | SortOrderInput No
providerAccountId SortOrder | SortOrderInput No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder No
session_state SortOrder | SortOrderInput No

AccountWhereUniqueInput

Name Type Nullable
provider String No
providerAccountId String No
id_token String No
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
userId StringNullableFilter | String | Null Yes
type StringNullableFilter | String | Null Yes
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at BigIntNullableFilter | BigInt | Null Yes
scope StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes

AccountOrderByWithAggregationInput

Name Type Nullable
userId SortOrder | SortOrderInput No
type SortOrder | SortOrderInput No
provider SortOrder | SortOrderInput No
providerAccountId SortOrder | SortOrderInput No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder No
session_state SortOrder | SortOrderInput No
_count AccountCountOrderByAggregateInput No
_avg AccountAvgOrderByAggregateInput No
_max AccountMaxOrderByAggregateInput No
_min AccountMinOrderByAggregateInput No
_sum AccountSumOrderByAggregateInput No

AccountScalarWhereWithAggregatesInput

Name Type Nullable
AND AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
OR AccountScalarWhereWithAggregatesInput[] No
NOT AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
userId StringNullableWithAggregatesFilter | String | Null Yes
type StringNullableWithAggregatesFilter | String | Null Yes
provider StringNullableWithAggregatesFilter | String | Null Yes
providerAccountId StringNullableWithAggregatesFilter | String | Null Yes
refresh_token StringNullableWithAggregatesFilter | String | Null Yes
access_token StringNullableWithAggregatesFilter | String | Null Yes
expires_at BigIntNullableWithAggregatesFilter | BigInt | Null Yes
scope StringNullableWithAggregatesFilter | String | Null Yes
id_token StringWithAggregatesFilter | String No
session_state StringNullableWithAggregatesFilter | String | Null Yes

AmbulanceWhereInput

Name Type Nullable
AND AmbulanceWhereInput | AmbulanceWhereInput[] No
OR AmbulanceWhereInput[] No
NOT AmbulanceWhereInput | AmbulanceWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
vehicle_number StringFilter | String No
ambulance_type StringNullableFilter | String | Null Yes
person IntFilter | Int No
version StringFilter | String No
organization IntNullableFilter | Int | Null Yes
equipment StringNullableListFilter No
contact IntNullableFilter | Int | Null Yes
color StringNullableFilter | String | Null Yes
Contact ContactNullableRelationFilter | ContactWhereInput | Null Yes
Organization OrganizationNullableRelationFilter | OrganizationWhereInput | Null Yes
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

AmbulanceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
vehicle_number SortOrder No
ambulance_type SortOrder | SortOrderInput No
person SortOrder No
version SortOrder No
organization SortOrder | SortOrderInput No
equipment SortOrder No
contact SortOrder | SortOrderInput No
color SortOrder | SortOrderInput No
Contact ContactOrderByWithRelationInput No
Organization OrganizationOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

AmbulanceWhereUniqueInput

Name Type Nullable
id Int No
AND AmbulanceWhereInput | AmbulanceWhereInput[] No
OR AmbulanceWhereInput[] No
NOT AmbulanceWhereInput | AmbulanceWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
vehicle_number StringFilter | String No
ambulance_type StringNullableFilter | String | Null Yes
person IntFilter | Int No
version StringFilter | String No
organization IntNullableFilter | Int | Null Yes
equipment StringNullableListFilter No
contact IntNullableFilter | Int | Null Yes
color StringNullableFilter | String | Null Yes
Contact ContactNullableRelationFilter | ContactWhereInput | Null Yes
Organization OrganizationNullableRelationFilter | OrganizationWhereInput | Null Yes
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

AmbulanceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
vehicle_number SortOrder No
ambulance_type SortOrder | SortOrderInput No
person SortOrder No
version SortOrder No
organization SortOrder | SortOrderInput No
equipment SortOrder No
contact SortOrder | SortOrderInput No
color SortOrder | SortOrderInput No
_count AmbulanceCountOrderByAggregateInput No
_avg AmbulanceAvgOrderByAggregateInput No
_max AmbulanceMaxOrderByAggregateInput No
_min AmbulanceMinOrderByAggregateInput No
_sum AmbulanceSumOrderByAggregateInput No

AmbulanceScalarWhereWithAggregatesInput

Name Type Nullable
AND AmbulanceScalarWhereWithAggregatesInput | AmbulanceScalarWhereWithAggregatesInput[] No
OR AmbulanceScalarWhereWithAggregatesInput[] No
NOT AmbulanceScalarWhereWithAggregatesInput | AmbulanceScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
vehicle_number StringWithAggregatesFilter | String No
ambulance_type StringNullableWithAggregatesFilter | String | Null Yes
person IntWithAggregatesFilter | Int No
version StringWithAggregatesFilter | String No
organization IntNullableWithAggregatesFilter | Int | Null Yes
equipment StringNullableListFilter No
contact IntNullableWithAggregatesFilter | Int | Null Yes
color StringNullableWithAggregatesFilter | String | Null Yes

BloodCenterWhereInput

Name Type Nullable
AND BloodCenterWhereInput | BloodCenterWhereInput[] No
OR BloodCenterWhereInput[] No
NOT BloodCenterWhereInput | BloodCenterWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
established_at DateTimeFilter | DateTime No
version StringFilter | String No
founder IntFilter | Int No
contact IntNullableFilter | Int | Null Yes
title StringFilter | String No
Contact_BloodCenter_contactToContact ContactNullableRelationFilter | ContactWhereInput | Null Yes
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No
BloodDonation BloodDonationListRelationFilter No
Contact_Contact_blood_centerToBloodCenter ContactListRelationFilter No

BloodCenterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
established_at SortOrder No
version SortOrder No
founder SortOrder No
contact SortOrder | SortOrderInput No
title SortOrder No
Contact_BloodCenter_contactToContact ContactOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
BloodDonation BloodDonationOrderByRelationAggregateInput No
Contact_Contact_blood_centerToBloodCenter ContactOrderByRelationAggregateInput No

BloodCenterWhereUniqueInput

Name Type Nullable
id Int No
AND BloodCenterWhereInput | BloodCenterWhereInput[] No
OR BloodCenterWhereInput[] No
NOT BloodCenterWhereInput | BloodCenterWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
established_at DateTimeFilter | DateTime No
version StringFilter | String No
founder IntFilter | Int No
contact IntNullableFilter | Int | Null Yes
title StringFilter | String No
Contact_BloodCenter_contactToContact ContactNullableRelationFilter | ContactWhereInput | Null Yes
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No
BloodDonation BloodDonationListRelationFilter No
Contact_Contact_blood_centerToBloodCenter ContactListRelationFilter No

BloodCenterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
established_at SortOrder No
version SortOrder No
founder SortOrder No
contact SortOrder | SortOrderInput No
title SortOrder No
_count BloodCenterCountOrderByAggregateInput No
_avg BloodCenterAvgOrderByAggregateInput No
_max BloodCenterMaxOrderByAggregateInput No
_min BloodCenterMinOrderByAggregateInput No
_sum BloodCenterSumOrderByAggregateInput No


BloodDonationWhereInput

Name Type Nullable
AND BloodDonationWhereInput | BloodDonationWhereInput[] No
OR BloodDonationWhereInput[] No
NOT BloodDonationWhereInput | BloodDonationWhereInput[] No
id IntFilter | Int No
donor_id IntFilter | Int No
organization_id IntFilter | Int No
amount IntFilter | Int No
version StringFilter | String No
donated_at DateTimeFilter | DateTime No
referred_by StringNullableFilter | String | Null Yes
test_done JsonNullableFilter No
bags StringNullableListFilter No
media_done StringNullableFilter | String | Null Yes
media_used StringNullableFilter | String | Null Yes
incubation StringNullableFilter | String | Null Yes
note StringNullableFilter | String | Null Yes
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
cabin_no StringNullableFilter | String | Null Yes
reg_no StringNullableFilter | String | Null Yes
BloodCenter BloodCenterRelationFilter | BloodCenterWhereInput No
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

BloodDonationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No
version SortOrder No
donated_at SortOrder No
referred_by SortOrder | SortOrderInput No
test_done SortOrder | SortOrderInput No
bags SortOrder No
media_done SortOrder | SortOrderInput No
media_used SortOrder | SortOrderInput No
incubation SortOrder | SortOrderInput No
note SortOrder | SortOrderInput No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
cabin_no SortOrder | SortOrderInput No
reg_no SortOrder | SortOrderInput No
BloodCenter BloodCenterOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

BloodDonationWhereUniqueInput

Name Type Nullable
id Int No
AND BloodDonationWhereInput | BloodDonationWhereInput[] No
OR BloodDonationWhereInput[] No
NOT BloodDonationWhereInput | BloodDonationWhereInput[] No
donor_id IntFilter | Int No
organization_id IntFilter | Int No
amount IntFilter | Int No
version StringFilter | String No
donated_at DateTimeFilter | DateTime No
referred_by StringNullableFilter | String | Null Yes
test_done JsonNullableFilter No
bags StringNullableListFilter No
media_done StringNullableFilter | String | Null Yes
media_used StringNullableFilter | String | Null Yes
incubation StringNullableFilter | String | Null Yes
note StringNullableFilter | String | Null Yes
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
cabin_no StringNullableFilter | String | Null Yes
reg_no StringNullableFilter | String | Null Yes
BloodCenter BloodCenterRelationFilter | BloodCenterWhereInput No
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

BloodDonationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No
version SortOrder No
donated_at SortOrder No
referred_by SortOrder | SortOrderInput No
test_done SortOrder | SortOrderInput No
bags SortOrder No
media_done SortOrder | SortOrderInput No
media_used SortOrder | SortOrderInput No
incubation SortOrder | SortOrderInput No
note SortOrder | SortOrderInput No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
cabin_no SortOrder | SortOrderInput No
reg_no SortOrder | SortOrderInput No
_count BloodDonationCountOrderByAggregateInput No
_avg BloodDonationAvgOrderByAggregateInput No
_max BloodDonationMaxOrderByAggregateInput No
_min BloodDonationMinOrderByAggregateInput No
_sum BloodDonationSumOrderByAggregateInput No

BloodDonationScalarWhereWithAggregatesInput

Name Type Nullable
AND BloodDonationScalarWhereWithAggregatesInput | BloodDonationScalarWhereWithAggregatesInput[] No
OR BloodDonationScalarWhereWithAggregatesInput[] No
NOT BloodDonationScalarWhereWithAggregatesInput | BloodDonationScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
donor_id IntWithAggregatesFilter | Int No
organization_id IntWithAggregatesFilter | Int No
amount IntWithAggregatesFilter | Int No
version StringWithAggregatesFilter | String No
donated_at DateTimeWithAggregatesFilter | DateTime No
referred_by StringNullableWithAggregatesFilter | String | Null Yes
test_done JsonNullableWithAggregatesFilter No
bags StringNullableListFilter No
media_done StringNullableWithAggregatesFilter | String | Null Yes
media_used StringNullableWithAggregatesFilter | String | Null Yes
incubation StringNullableWithAggregatesFilter | String | Null Yes
note StringNullableWithAggregatesFilter | String | Null Yes
created_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
updated_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
cabin_no StringNullableWithAggregatesFilter | String | Null Yes
reg_no StringNullableWithAggregatesFilter | String | Null Yes

ClubWhereInput

Name Type Nullable
AND ClubWhereInput | ClubWhereInput[] No
OR ClubWhereInput[] No
NOT ClubWhereInput | ClubWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
name StringFilter | String No
established_at DateTimeFilter | DateTime No
contact IntFilter | Int No
version StringFilter | String No
chairman IntFilter | Int No
founder IntFilter | Int No
vice_chairman IntFilter | Int No
Person_Club_chairmanToPerson PersonRelationFilter | PersonWhereInput No
Contact_Club_contactToContact ContactRelationFilter | ContactWhereInput No
Person_Club_founderToPerson PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No
Person_Club_vice_chairmanToPerson PersonRelationFilter | PersonWhereInput No
Contact_Contact_clubToClub ContactListRelationFilter No
Member MemberListRelationFilter No
Organization OrganizationListRelationFilter No

ClubOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
established_at SortOrder No
contact SortOrder No
version SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No
Person_Club_chairmanToPerson PersonOrderByWithRelationInput No
Contact_Club_contactToContact ContactOrderByWithRelationInput No
Person_Club_founderToPerson PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
Person_Club_vice_chairmanToPerson PersonOrderByWithRelationInput No
Contact_Contact_clubToClub ContactOrderByRelationAggregateInput No
Member MemberOrderByRelationAggregateInput No
Organization OrganizationOrderByRelationAggregateInput No

ClubWhereUniqueInput

Name Type Nullable
id Int No
AND ClubWhereInput | ClubWhereInput[] No
OR ClubWhereInput[] No
NOT ClubWhereInput | ClubWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
name StringFilter | String No
established_at DateTimeFilter | DateTime No
contact IntFilter | Int No
version StringFilter | String No
chairman IntFilter | Int No
founder IntFilter | Int No
vice_chairman IntFilter | Int No
Person_Club_chairmanToPerson PersonRelationFilter | PersonWhereInput No
Contact_Club_contactToContact ContactRelationFilter | ContactWhereInput No
Person_Club_founderToPerson PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No
Person_Club_vice_chairmanToPerson PersonRelationFilter | PersonWhereInput No
Contact_Contact_clubToClub ContactListRelationFilter No
Member MemberListRelationFilter No
Organization OrganizationListRelationFilter No

ClubOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
established_at SortOrder No
contact SortOrder No
version SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No
_count ClubCountOrderByAggregateInput No
_avg ClubAvgOrderByAggregateInput No
_max ClubMaxOrderByAggregateInput No
_min ClubMinOrderByAggregateInput No
_sum ClubSumOrderByAggregateInput No

ClubScalarWhereWithAggregatesInput

Name Type Nullable
AND ClubScalarWhereWithAggregatesInput | ClubScalarWhereWithAggregatesInput[] No
OR ClubScalarWhereWithAggregatesInput[] No
NOT ClubScalarWhereWithAggregatesInput | ClubScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
name StringWithAggregatesFilter | String No
established_at DateTimeWithAggregatesFilter | DateTime No
contact IntWithAggregatesFilter | Int No
version StringWithAggregatesFilter | String No
chairman IntWithAggregatesFilter | Int No
founder IntWithAggregatesFilter | Int No
vice_chairman IntWithAggregatesFilter | Int No

ContactWhereInput

Name Type Nullable
AND ContactWhereInput | ContactWhereInput[] No
OR ContactWhereInput[] No
NOT ContactWhereInput | ContactWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
address_line StringFilter | String No
address_line_1 StringNullableFilter | String | Null Yes
state StringFilter | String No
city StringFilter | String No
zip StringFilter | String No
phone StringFilter | String No
phone_1 StringNullableFilter | String | Null Yes
fax StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
email_1 StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
social_media JsonNullableFilter No
version StringFilter | String No
country StringNullableFilter | String | Null Yes
person IntNullableFilter | Int | Null Yes
club IntNullableFilter | Int | Null Yes
blood_center IntNullableFilter | Int | Null Yes
donation IntNullableFilter | Int | Null Yes
hospital IntNullableFilter | Int | Null Yes
Ambulance AmbulanceListRelationFilter No
BloodCenter_BloodCenter_contactToContact BloodCenterListRelationFilter No
Club_Club_contactToContact ClubListRelationFilter No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterNullableRelationFilter | BloodCenterWhereInput | Null Yes
Club_Contact_clubToClub ClubNullableRelationFilter | ClubWhereInput | Null Yes
Country CountryNullableRelationFilter | CountryWhereInput | Null Yes
Donation DonationNullableRelationFilter | DonationWhereInput | Null Yes
Hospital_Contact_hospitalToHospital HospitalNullableRelationFilter | HospitalWhereInput | Null Yes
Person_Contact_personToPerson PersonNullableRelationFilter | PersonWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
Hospital_Hospital_contactToContact HospitalListRelationFilter No
Person_Person_contact_idToContact PersonListRelationFilter No

ContactOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
address_line SortOrder No
address_line_1 SortOrder | SortOrderInput No
state SortOrder No
city SortOrder No
zip SortOrder No
phone SortOrder No
phone_1 SortOrder | SortOrderInput No
fax SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
email_1 SortOrder | SortOrderInput No
website SortOrder | SortOrderInput No
social_media SortOrder | SortOrderInput No
version SortOrder No
country SortOrder | SortOrderInput No
person SortOrder | SortOrderInput No
club SortOrder | SortOrderInput No
blood_center SortOrder | SortOrderInput No
donation SortOrder | SortOrderInput No
hospital SortOrder | SortOrderInput No
Ambulance AmbulanceOrderByRelationAggregateInput No
BloodCenter_BloodCenter_contactToContact BloodCenterOrderByRelationAggregateInput No
Club_Club_contactToContact ClubOrderByRelationAggregateInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterOrderByWithRelationInput No
Club_Contact_clubToClub ClubOrderByWithRelationInput No
Country CountryOrderByWithRelationInput No
Donation DonationOrderByWithRelationInput No
Hospital_Contact_hospitalToHospital HospitalOrderByWithRelationInput No
Person_Contact_personToPerson PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
Hospital_Hospital_contactToContact HospitalOrderByRelationAggregateInput No
Person_Person_contact_idToContact PersonOrderByRelationAggregateInput No

ContactWhereUniqueInput

Name Type Nullable
id Int No
AND ContactWhereInput | ContactWhereInput[] No
OR ContactWhereInput[] No
NOT ContactWhereInput | ContactWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
address_line StringFilter | String No
address_line_1 StringNullableFilter | String | Null Yes
state StringFilter | String No
city StringFilter | String No
zip StringFilter | String No
phone StringFilter | String No
phone_1 StringNullableFilter | String | Null Yes
fax StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
email_1 StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
social_media JsonNullableFilter No
version StringFilter | String No
country StringNullableFilter | String | Null Yes
person IntNullableFilter | Int | Null Yes
club IntNullableFilter | Int | Null Yes
blood_center IntNullableFilter | Int | Null Yes
donation IntNullableFilter | Int | Null Yes
hospital IntNullableFilter | Int | Null Yes
Ambulance AmbulanceListRelationFilter No
BloodCenter_BloodCenter_contactToContact BloodCenterListRelationFilter No
Club_Club_contactToContact ClubListRelationFilter No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterNullableRelationFilter | BloodCenterWhereInput | Null Yes
Club_Contact_clubToClub ClubNullableRelationFilter | ClubWhereInput | Null Yes
Country CountryNullableRelationFilter | CountryWhereInput | Null Yes
Donation DonationNullableRelationFilter | DonationWhereInput | Null Yes
Hospital_Contact_hospitalToHospital HospitalNullableRelationFilter | HospitalWhereInput | Null Yes
Person_Contact_personToPerson PersonNullableRelationFilter | PersonWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
Hospital_Hospital_contactToContact HospitalListRelationFilter No
Person_Person_contact_idToContact PersonListRelationFilter No

ContactOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
address_line SortOrder No
address_line_1 SortOrder | SortOrderInput No
state SortOrder No
city SortOrder No
zip SortOrder No
phone SortOrder No
phone_1 SortOrder | SortOrderInput No
fax SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
email_1 SortOrder | SortOrderInput No
website SortOrder | SortOrderInput No
social_media SortOrder | SortOrderInput No
version SortOrder No
country SortOrder | SortOrderInput No
person SortOrder | SortOrderInput No
club SortOrder | SortOrderInput No
blood_center SortOrder | SortOrderInput No
donation SortOrder | SortOrderInput No
hospital SortOrder | SortOrderInput No
_count ContactCountOrderByAggregateInput No
_avg ContactAvgOrderByAggregateInput No
_max ContactMaxOrderByAggregateInput No
_min ContactMinOrderByAggregateInput No
_sum ContactSumOrderByAggregateInput No

ContactScalarWhereWithAggregatesInput

Name Type Nullable
AND ContactScalarWhereWithAggregatesInput | ContactScalarWhereWithAggregatesInput[] No
OR ContactScalarWhereWithAggregatesInput[] No
NOT ContactScalarWhereWithAggregatesInput | ContactScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
address_line StringWithAggregatesFilter | String No
address_line_1 StringNullableWithAggregatesFilter | String | Null Yes
state StringWithAggregatesFilter | String No
city StringWithAggregatesFilter | String No
zip StringWithAggregatesFilter | String No
phone StringWithAggregatesFilter | String No
phone_1 StringNullableWithAggregatesFilter | String | Null Yes
fax StringNullableWithAggregatesFilter | String | Null Yes
email StringNullableWithAggregatesFilter | String | Null Yes
email_1 StringNullableWithAggregatesFilter | String | Null Yes
website StringNullableWithAggregatesFilter | String | Null Yes
social_media JsonNullableWithAggregatesFilter No
version StringWithAggregatesFilter | String No
country StringNullableWithAggregatesFilter | String | Null Yes
person IntNullableWithAggregatesFilter | Int | Null Yes
club IntNullableWithAggregatesFilter | Int | Null Yes
blood_center IntNullableWithAggregatesFilter | Int | Null Yes
donation IntNullableWithAggregatesFilter | Int | Null Yes
hospital IntNullableWithAggregatesFilter | Int | Null Yes

CountryWhereInput

Name Type Nullable
AND CountryWhereInput | CountryWhereInput[] No
OR CountryWhereInput[] No
NOT CountryWhereInput | CountryWhereInput[] No
alpha_3 StringFilter | String No
alpha_2 StringFilter | String No
numeric StringFilter | String No
name StringFilter | String No
version StringFilter | String No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
Contact ContactListRelationFilter No
Version VersionRelationFilter | VersionWhereInput No

CountryOrderByWithRelationInput

Name Type Nullable
alpha_3 SortOrder No
alpha_2 SortOrder No
numeric SortOrder No
name SortOrder No
version SortOrder No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
Contact ContactOrderByRelationAggregateInput No
Version VersionOrderByWithRelationInput No

CountryWhereUniqueInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
alpha_3_alpha_2_numeric_name CountryAlpha_3Alpha_2NumericNameCompoundUniqueInput No
AND CountryWhereInput | CountryWhereInput[] No
OR CountryWhereInput[] No
NOT CountryWhereInput | CountryWhereInput[] No
numeric StringFilter | String No
name StringFilter | String No
version StringFilter | String No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
Contact ContactListRelationFilter No
Version VersionRelationFilter | VersionWhereInput No

CountryOrderByWithAggregationInput

Name Type Nullable
alpha_3 SortOrder No
alpha_2 SortOrder No
numeric SortOrder No
name SortOrder No
version SortOrder No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
_count CountryCountOrderByAggregateInput No
_max CountryMaxOrderByAggregateInput No
_min CountryMinOrderByAggregateInput No


DeviceWhereInput

Name Type Nullable
AND DeviceWhereInput | DeviceWhereInput[] No
OR DeviceWhereInput[] No
NOT DeviceWhereInput | DeviceWhereInput[] No
id IntFilter | Int No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
name StringNullableFilter | String | Null Yes
mac_address StringNullableFilter | String | Null Yes
model StringNullableFilter | String | Null Yes
os StringNullableFilter | String | Null Yes
os_version StringNullableFilter | String | Null Yes
device_id StringNullableFilter | String | Null Yes
brand StringNullableFilter | String | Null Yes
manufacturer StringNullableFilter | String | Null Yes
version StringFilter | String No
Version VersionRelationFilter | VersionWhereInput No
LoginRecord LoginRecordListRelationFilter No

DeviceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
name SortOrder | SortOrderInput No
mac_address SortOrder | SortOrderInput No
model SortOrder | SortOrderInput No
os SortOrder | SortOrderInput No
os_version SortOrder | SortOrderInput No
device_id SortOrder | SortOrderInput No
brand SortOrder | SortOrderInput No
manufacturer SortOrder | SortOrderInput No
version SortOrder No
Version VersionOrderByWithRelationInput No
LoginRecord LoginRecordOrderByRelationAggregateInput No

DeviceWhereUniqueInput

Name Type Nullable
id Int No
AND DeviceWhereInput | DeviceWhereInput[] No
OR DeviceWhereInput[] No
NOT DeviceWhereInput | DeviceWhereInput[] No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
name StringNullableFilter | String | Null Yes
mac_address StringNullableFilter | String | Null Yes
model StringNullableFilter | String | Null Yes
os StringNullableFilter | String | Null Yes
os_version StringNullableFilter | String | Null Yes
device_id StringNullableFilter | String | Null Yes
brand StringNullableFilter | String | Null Yes
manufacturer StringNullableFilter | String | Null Yes
version StringFilter | String No
Version VersionRelationFilter | VersionWhereInput No
LoginRecord LoginRecordListRelationFilter No

DeviceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
name SortOrder | SortOrderInput No
mac_address SortOrder | SortOrderInput No
model SortOrder | SortOrderInput No
os SortOrder | SortOrderInput No
os_version SortOrder | SortOrderInput No
device_id SortOrder | SortOrderInput No
brand SortOrder | SortOrderInput No
manufacturer SortOrder | SortOrderInput No
version SortOrder No
_count DeviceCountOrderByAggregateInput No
_avg DeviceAvgOrderByAggregateInput No
_max DeviceMaxOrderByAggregateInput No
_min DeviceMinOrderByAggregateInput No
_sum DeviceSumOrderByAggregateInput No

DeviceScalarWhereWithAggregatesInput

Name Type Nullable
AND DeviceScalarWhereWithAggregatesInput | DeviceScalarWhereWithAggregatesInput[] No
OR DeviceScalarWhereWithAggregatesInput[] No
NOT DeviceScalarWhereWithAggregatesInput | DeviceScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
updated_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
name StringNullableWithAggregatesFilter | String | Null Yes
mac_address StringNullableWithAggregatesFilter | String | Null Yes
model StringNullableWithAggregatesFilter | String | Null Yes
os StringNullableWithAggregatesFilter | String | Null Yes
os_version StringNullableWithAggregatesFilter | String | Null Yes
device_id StringNullableWithAggregatesFilter | String | Null Yes
brand StringNullableWithAggregatesFilter | String | Null Yes
manufacturer StringNullableWithAggregatesFilter | String | Null Yes
version StringWithAggregatesFilter | String No

DonationWhereInput

Name Type Nullable
AND DonationWhereInput | DonationWhereInput[] No
OR DonationWhereInput[] No
NOT DonationWhereInput | DonationWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
amount IntFilter | Int No
donated_at DateTimeFilter | DateTime No
version StringFilter | String No
person IntFilter | Int No
member IntFilter | Int No
organization IntFilter | Int No
Contact ContactListRelationFilter No
Member MemberRelationFilter | MemberWhereInput No
Organization OrganizationRelationFilter | OrganizationWhereInput No
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

DonationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
amount SortOrder No
donated_at SortOrder No
version SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No
Contact ContactOrderByRelationAggregateInput No
Member MemberOrderByWithRelationInput No
Organization OrganizationOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

DonationWhereUniqueInput

Name Type Nullable
id Int No
AND DonationWhereInput | DonationWhereInput[] No
OR DonationWhereInput[] No
NOT DonationWhereInput | DonationWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
amount IntFilter | Int No
donated_at DateTimeFilter | DateTime No
version StringFilter | String No
person IntFilter | Int No
member IntFilter | Int No
organization IntFilter | Int No
Contact ContactListRelationFilter No
Member MemberRelationFilter | MemberWhereInput No
Organization OrganizationRelationFilter | OrganizationWhereInput No
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

DonationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
amount SortOrder No
donated_at SortOrder No
version SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No
_count DonationCountOrderByAggregateInput No
_avg DonationAvgOrderByAggregateInput No
_max DonationMaxOrderByAggregateInput No
_min DonationMinOrderByAggregateInput No
_sum DonationSumOrderByAggregateInput No


HospitalWhereInput

Name Type Nullable
AND HospitalWhereInput | HospitalWhereInput[] No
OR HospitalWhereInput[] No
NOT HospitalWhereInput | HospitalWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
name StringFilter | String No
founded_at DateTimeFilter | DateTime No
accreditation StringNullableFilter | String | Null Yes
bed_count IntNullableFilter | Int | Null Yes
emergency_room BoolNullableFilter | Boolean | Null Yes
services StringNullableListFilter No
specialties StringNullableListFilter No
rating FloatNullableFilter | Float | Null Yes
facility_type EnumFacilityTypeNullableFilter | FacilityType | Null Yes
ownership StringNullableFilter | String | Null Yes
insurance_accepted StringNullableFilter | String | Null Yes
operating_hours StringNullableFilter | String | Null Yes
infrastructure StringNullableFilter | String | Null Yes
security_controls StringNullableFilter | String | Null Yes
version StringFilter | String No
location IntNullableFilter | Int | Null Yes
contact IntNullableFilter | Int | Null Yes
founder IntNullableFilter | Int | Null Yes
director IntNullableFilter | Int | Null Yes
chairman IntNullableFilter | Int | Null Yes
Contact_Contact_hospitalToHospital ContactListRelationFilter No
Contact_Hospital_contactToContact ContactNullableRelationFilter | ContactWhereInput | Null Yes
Location LocationNullableRelationFilter | LocationWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No

HospitalOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
founded_at SortOrder No
accreditation SortOrder | SortOrderInput No
bed_count SortOrder | SortOrderInput No
emergency_room SortOrder | SortOrderInput No
services SortOrder No
specialties SortOrder No
rating SortOrder | SortOrderInput No
facility_type SortOrder | SortOrderInput No
ownership SortOrder | SortOrderInput No
insurance_accepted SortOrder | SortOrderInput No
operating_hours SortOrder | SortOrderInput No
infrastructure SortOrder | SortOrderInput No
security_controls SortOrder | SortOrderInput No
version SortOrder No
location SortOrder | SortOrderInput No
contact SortOrder | SortOrderInput No
founder SortOrder | SortOrderInput No
director SortOrder | SortOrderInput No
chairman SortOrder | SortOrderInput No
Contact_Contact_hospitalToHospital ContactOrderByRelationAggregateInput No
Contact_Hospital_contactToContact ContactOrderByWithRelationInput No
Location LocationOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

HospitalWhereUniqueInput

Name Type Nullable
id Int No
AND HospitalWhereInput | HospitalWhereInput[] No
OR HospitalWhereInput[] No
NOT HospitalWhereInput | HospitalWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
name StringFilter | String No
founded_at DateTimeFilter | DateTime No
accreditation StringNullableFilter | String | Null Yes
bed_count IntNullableFilter | Int | Null Yes
emergency_room BoolNullableFilter | Boolean | Null Yes
services StringNullableListFilter No
specialties StringNullableListFilter No
rating FloatNullableFilter | Float | Null Yes
facility_type EnumFacilityTypeNullableFilter | FacilityType | Null Yes
ownership StringNullableFilter | String | Null Yes
insurance_accepted StringNullableFilter | String | Null Yes
operating_hours StringNullableFilter | String | Null Yes
infrastructure StringNullableFilter | String | Null Yes
security_controls StringNullableFilter | String | Null Yes
version StringFilter | String No
location IntNullableFilter | Int | Null Yes
contact IntNullableFilter | Int | Null Yes
founder IntNullableFilter | Int | Null Yes
director IntNullableFilter | Int | Null Yes
chairman IntNullableFilter | Int | Null Yes
Contact_Contact_hospitalToHospital ContactListRelationFilter No
Contact_Hospital_contactToContact ContactNullableRelationFilter | ContactWhereInput | Null Yes
Location LocationNullableRelationFilter | LocationWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No

HospitalOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
founded_at SortOrder No
accreditation SortOrder | SortOrderInput No
bed_count SortOrder | SortOrderInput No
emergency_room SortOrder | SortOrderInput No
services SortOrder No
specialties SortOrder No
rating SortOrder | SortOrderInput No
facility_type SortOrder | SortOrderInput No
ownership SortOrder | SortOrderInput No
insurance_accepted SortOrder | SortOrderInput No
operating_hours SortOrder | SortOrderInput No
infrastructure SortOrder | SortOrderInput No
security_controls SortOrder | SortOrderInput No
version SortOrder No
location SortOrder | SortOrderInput No
contact SortOrder | SortOrderInput No
founder SortOrder | SortOrderInput No
director SortOrder | SortOrderInput No
chairman SortOrder | SortOrderInput No
_count HospitalCountOrderByAggregateInput No
_avg HospitalAvgOrderByAggregateInput No
_max HospitalMaxOrderByAggregateInput No
_min HospitalMinOrderByAggregateInput No
_sum HospitalSumOrderByAggregateInput No

HospitalScalarWhereWithAggregatesInput

Name Type Nullable
AND HospitalScalarWhereWithAggregatesInput | HospitalScalarWhereWithAggregatesInput[] No
OR HospitalScalarWhereWithAggregatesInput[] No
NOT HospitalScalarWhereWithAggregatesInput | HospitalScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
name StringWithAggregatesFilter | String No
founded_at DateTimeWithAggregatesFilter | DateTime No
accreditation StringNullableWithAggregatesFilter | String | Null Yes
bed_count IntNullableWithAggregatesFilter | Int | Null Yes
emergency_room BoolNullableWithAggregatesFilter | Boolean | Null Yes
services StringNullableListFilter No
specialties StringNullableListFilter No
rating FloatNullableWithAggregatesFilter | Float | Null Yes
facility_type EnumFacilityTypeNullableWithAggregatesFilter | FacilityType | Null Yes
ownership StringNullableWithAggregatesFilter | String | Null Yes
insurance_accepted StringNullableWithAggregatesFilter | String | Null Yes
operating_hours StringNullableWithAggregatesFilter | String | Null Yes
infrastructure StringNullableWithAggregatesFilter | String | Null Yes
security_controls StringNullableWithAggregatesFilter | String | Null Yes
version StringWithAggregatesFilter | String No
location IntNullableWithAggregatesFilter | Int | Null Yes
contact IntNullableWithAggregatesFilter | Int | Null Yes
founder IntNullableWithAggregatesFilter | Int | Null Yes
director IntNullableWithAggregatesFilter | Int | Null Yes
chairman IntNullableWithAggregatesFilter | Int | Null Yes

LocationWhereInput

Name Type Nullable
AND LocationWhereInput | LocationWhereInput[] No
OR LocationWhereInput[] No
NOT LocationWhereInput | LocationWhereInput[] No
id IntFilter | Int No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
version StringFilter | String No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
Hospital HospitalListRelationFilter No
Version VersionRelationFilter | VersionWhereInput No

LocationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
version SortOrder No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
Hospital HospitalOrderByRelationAggregateInput No
Version VersionOrderByWithRelationInput No

LocationWhereUniqueInput

Name Type Nullable
id Int No
AND LocationWhereInput | LocationWhereInput[] No
OR LocationWhereInput[] No
NOT LocationWhereInput | LocationWhereInput[] No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
version StringFilter | String No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
Hospital HospitalListRelationFilter No
Version VersionRelationFilter | VersionWhereInput No

LocationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
version SortOrder No
created_at SortOrder | SortOrderInput No
updated_at SortOrder | SortOrderInput No
_count LocationCountOrderByAggregateInput No
_avg LocationAvgOrderByAggregateInput No
_max LocationMaxOrderByAggregateInput No
_min LocationMinOrderByAggregateInput No
_sum LocationSumOrderByAggregateInput No


LoginRecordWhereInput

Name Type Nullable
AND LoginRecordWhereInput | LoginRecordWhereInput[] No
OR LoginRecordWhereInput[] No
NOT LoginRecordWhereInput | LoginRecordWhereInput[] No
id IntFilter | Int No
user IntFilter | Int No
ip_address StringFilter | String No
user_agent StringFilter | String No
login_status StringFilter | String No
session_id StringNullableFilter | String | Null Yes
location StringNullableFilter | String | Null Yes
authentication EnumAuthenticationMethodNullableFilter | AuthenticationMethod | Null Yes
security_tokens StringNullableFilter | String | Null Yes
logout_timestamp DateTimeNullableFilter | DateTime | Null Yes
version StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
devices IntNullableFilter | Int | Null Yes
Device DeviceNullableRelationFilter | DeviceWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
OrganizationSettings OrganizationSettingsListRelationFilter No
User UserListRelationFilter No
UserSettings UserSettingsListRelationFilter No

LoginRecordOrderByWithRelationInput

Name Type Nullable
id SortOrder No
user SortOrder No
ip_address SortOrder No
user_agent SortOrder No
login_status SortOrder No
session_id SortOrder | SortOrderInput No
location SortOrder | SortOrderInput No
authentication SortOrder | SortOrderInput No
security_tokens SortOrder | SortOrderInput No
logout_timestamp SortOrder | SortOrderInput No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
devices SortOrder | SortOrderInput No
Device DeviceOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
OrganizationSettings OrganizationSettingsOrderByRelationAggregateInput No
User UserOrderByRelationAggregateInput No
UserSettings UserSettingsOrderByRelationAggregateInput No

LoginRecordWhereUniqueInput

Name Type Nullable
id Int No
AND LoginRecordWhereInput | LoginRecordWhereInput[] No
OR LoginRecordWhereInput[] No
NOT LoginRecordWhereInput | LoginRecordWhereInput[] No
user IntFilter | Int No
ip_address StringFilter | String No
user_agent StringFilter | String No
login_status StringFilter | String No
session_id StringNullableFilter | String | Null Yes
location StringNullableFilter | String | Null Yes
authentication EnumAuthenticationMethodNullableFilter | AuthenticationMethod | Null Yes
security_tokens StringNullableFilter | String | Null Yes
logout_timestamp DateTimeNullableFilter | DateTime | Null Yes
version StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
devices IntNullableFilter | Int | Null Yes
Device DeviceNullableRelationFilter | DeviceWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
OrganizationSettings OrganizationSettingsListRelationFilter No
User UserListRelationFilter No
UserSettings UserSettingsListRelationFilter No

LoginRecordOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
user SortOrder No
ip_address SortOrder No
user_agent SortOrder No
login_status SortOrder No
session_id SortOrder | SortOrderInput No
location SortOrder | SortOrderInput No
authentication SortOrder | SortOrderInput No
security_tokens SortOrder | SortOrderInput No
logout_timestamp SortOrder | SortOrderInput No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
devices SortOrder | SortOrderInput No
_count LoginRecordCountOrderByAggregateInput No
_avg LoginRecordAvgOrderByAggregateInput No
_max LoginRecordMaxOrderByAggregateInput No
_min LoginRecordMinOrderByAggregateInput No
_sum LoginRecordSumOrderByAggregateInput No

LoginRecordScalarWhereWithAggregatesInput

Name Type Nullable
AND LoginRecordScalarWhereWithAggregatesInput | LoginRecordScalarWhereWithAggregatesInput[] No
OR LoginRecordScalarWhereWithAggregatesInput[] No
NOT LoginRecordScalarWhereWithAggregatesInput | LoginRecordScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
user IntWithAggregatesFilter | Int No
ip_address StringWithAggregatesFilter | String No
user_agent StringWithAggregatesFilter | String No
login_status StringWithAggregatesFilter | String No
session_id StringNullableWithAggregatesFilter | String | Null Yes
location StringNullableWithAggregatesFilter | String | Null Yes
authentication EnumAuthenticationMethodNullableWithAggregatesFilter | AuthenticationMethod | Null Yes
security_tokens StringNullableWithAggregatesFilter | String | Null Yes
logout_timestamp DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
version StringWithAggregatesFilter | String No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
devices IntNullableWithAggregatesFilter | Int | Null Yes

MemberWhereInput

Name Type Nullable
AND MemberWhereInput | MemberWhereInput[] No
OR MemberWhereInput[] No
NOT MemberWhereInput | MemberWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
allergies StringNullableFilter | String | Null Yes
complications StringNullableFilter | String | Null Yes
medications StringNullableFilter | String | Null Yes
blood_disorders StringNullableFilter | String | Null Yes
club_id IntNullableFilter | Int | Null Yes
infectious_diseases StringNullableFilter | String | Null Yes
last_blood_donation DateTimeNullableFilter | DateTime | Null Yes
medical_conditions StringNullableFilter | String | Null Yes
person_id IntNullableFilter | Int | Null Yes
Donation DonationListRelationFilter No
Club ClubNullableRelationFilter | ClubWhereInput | Null Yes
Person PersonNullableRelationFilter | PersonWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
Request RequestListRelationFilter No

MemberOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
allergies SortOrder | SortOrderInput No
complications SortOrder | SortOrderInput No
medications SortOrder | SortOrderInput No
blood_disorders SortOrder | SortOrderInput No
club_id SortOrder | SortOrderInput No
infectious_diseases SortOrder | SortOrderInput No
last_blood_donation SortOrder | SortOrderInput No
medical_conditions SortOrder | SortOrderInput No
person_id SortOrder | SortOrderInput No
Donation DonationOrderByRelationAggregateInput No
Club ClubOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
Request RequestOrderByRelationAggregateInput No

MemberWhereUniqueInput

Name Type Nullable
id Int No
AND MemberWhereInput | MemberWhereInput[] No
OR MemberWhereInput[] No
NOT MemberWhereInput | MemberWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
allergies StringNullableFilter | String | Null Yes
complications StringNullableFilter | String | Null Yes
medications StringNullableFilter | String | Null Yes
blood_disorders StringNullableFilter | String | Null Yes
club_id IntNullableFilter | Int | Null Yes
infectious_diseases StringNullableFilter | String | Null Yes
last_blood_donation DateTimeNullableFilter | DateTime | Null Yes
medical_conditions StringNullableFilter | String | Null Yes
person_id IntNullableFilter | Int | Null Yes
Donation DonationListRelationFilter No
Club ClubNullableRelationFilter | ClubWhereInput | Null Yes
Person PersonNullableRelationFilter | PersonWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
Request RequestListRelationFilter No

MemberOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
allergies SortOrder | SortOrderInput No
complications SortOrder | SortOrderInput No
medications SortOrder | SortOrderInput No
blood_disorders SortOrder | SortOrderInput No
club_id SortOrder | SortOrderInput No
infectious_diseases SortOrder | SortOrderInput No
last_blood_donation SortOrder | SortOrderInput No
medical_conditions SortOrder | SortOrderInput No
person_id SortOrder | SortOrderInput No
_count MemberCountOrderByAggregateInput No
_avg MemberAvgOrderByAggregateInput No
_max MemberMaxOrderByAggregateInput No
_min MemberMinOrderByAggregateInput No
_sum MemberSumOrderByAggregateInput No

MemberScalarWhereWithAggregatesInput

Name Type Nullable
AND MemberScalarWhereWithAggregatesInput | MemberScalarWhereWithAggregatesInput[] No
OR MemberScalarWhereWithAggregatesInput[] No
NOT MemberScalarWhereWithAggregatesInput | MemberScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
version StringWithAggregatesFilter | String No
allergies StringNullableWithAggregatesFilter | String | Null Yes
complications StringNullableWithAggregatesFilter | String | Null Yes
medications StringNullableWithAggregatesFilter | String | Null Yes
blood_disorders StringNullableWithAggregatesFilter | String | Null Yes
club_id IntNullableWithAggregatesFilter | Int | Null Yes
infectious_diseases StringNullableWithAggregatesFilter | String | Null Yes
last_blood_donation DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
medical_conditions StringNullableWithAggregatesFilter | String | Null Yes
person_id IntNullableWithAggregatesFilter | Int | Null Yes

OrganizationWhereInput

Name Type Nullable
AND OrganizationWhereInput | OrganizationWhereInput[] No
OR OrganizationWhereInput[] No
NOT OrganizationWhereInput | OrganizationWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
org_type EnumOrgTypeFilter | OrgType No
org_id IntFilter | Int No
Volunteer JsonFilter No
personId IntFilter | Int No
organizationSettingsId IntFilter | Int No
clubId IntNullableFilter | Int | Null Yes
version StringFilter | String No
Ambulance AmbulanceListRelationFilter No
Donation DonationListRelationFilter No
Club ClubNullableRelationFilter | ClubWhereInput | Null Yes
OrganizationSettings OrganizationSettingsRelationFilter | OrganizationSettingsWhereInput No
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No
Support SupportListRelationFilter No
SupportMessage SupportMessageListRelationFilter No
Team TeamListRelationFilter No

OrganizationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
org_type SortOrder No
org_id SortOrder No
Volunteer SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder | SortOrderInput No
version SortOrder No
Ambulance AmbulanceOrderByRelationAggregateInput No
Donation DonationOrderByRelationAggregateInput No
Club ClubOrderByWithRelationInput No
OrganizationSettings OrganizationSettingsOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
Support SupportOrderByRelationAggregateInput No
SupportMessage SupportMessageOrderByRelationAggregateInput No
Team TeamOrderByRelationAggregateInput No

OrganizationWhereUniqueInput

Name Type Nullable
id Int No
AND OrganizationWhereInput | OrganizationWhereInput[] No
OR OrganizationWhereInput[] No
NOT OrganizationWhereInput | OrganizationWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
org_type EnumOrgTypeFilter | OrgType No
org_id IntFilter | Int No
Volunteer JsonFilter No
personId IntFilter | Int No
organizationSettingsId IntFilter | Int No
clubId IntNullableFilter | Int | Null Yes
version StringFilter | String No
Ambulance AmbulanceListRelationFilter No
Donation DonationListRelationFilter No
Club ClubNullableRelationFilter | ClubWhereInput | Null Yes
OrganizationSettings OrganizationSettingsRelationFilter | OrganizationSettingsWhereInput No
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No
Support SupportListRelationFilter No
SupportMessage SupportMessageListRelationFilter No
Team TeamListRelationFilter No

OrganizationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
org_type SortOrder No
org_id SortOrder No
Volunteer SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder | SortOrderInput No
version SortOrder No
_count OrganizationCountOrderByAggregateInput No
_avg OrganizationAvgOrderByAggregateInput No
_max OrganizationMaxOrderByAggregateInput No
_min OrganizationMinOrderByAggregateInput No
_sum OrganizationSumOrderByAggregateInput No


OrganizationSettingsWhereInput

Name Type Nullable
AND OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] No
OR OrganizationSettingsWhereInput[] No
NOT OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
language EnumLanguageFilter | Language No
time_format EnumTimeFormatFilter | TimeFormat No
date_format EnumDateFormatFilter | DateFormat No
timezone EnumTimezoneFilter | Timezone No
theme EnumThemeNullableFilter | Theme | Null Yes
email_notifications BoolFilter | Boolean No
phone_notification BoolFilter | Boolean No
push_notifications BoolFilter | Boolean No
two_factor_auth BoolNullableFilter | Boolean | Null Yes
loginRecordId IntNullableFilter | Int | Null Yes
accountDeactivation BoolNullableFilter | Boolean | Null Yes
avatar StringNullableFilter | String | Null Yes
clearBrowsingData BoolNullableFilter | Boolean | Null Yes
contactSupportLink StringNullableFilter | String | Null Yes
dataRetentionDays IntNullableFilter | Int | Null Yes
dataSharing BoolNullableFilter | Boolean | Null Yes
helpCenterLink StringNullableFilter | String | Null Yes
high_contrast_mode BoolNullableFilter | Boolean | Null Yes
in_app_notifications BoolNullableFilter | Boolean | Null Yes
key_board_shortcut BoolNullableFilter | Boolean | Null Yes
notification_frequency StringNullableFilter | String | Null Yes
notification_sound StringNullableFilter | String | Null Yes
notification_vibrate BoolNullableFilter | Boolean | Null Yes
password_reset BoolNullableFilter | Boolean | Null Yes
security_answer StringNullableFilter | String | Null Yes
security_question StringNullableFilter | String | Null Yes
username StringNullableFilter | String | Null Yes
version StringFilter | String No
Organization OrganizationListRelationFilter No
LoginRecord LoginRecordNullableRelationFilter | LoginRecordWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No

OrganizationSettingsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder | SortOrderInput No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder | SortOrderInput No
loginRecordId SortOrder | SortOrderInput No
accountDeactivation SortOrder | SortOrderInput No
avatar SortOrder | SortOrderInput No
clearBrowsingData SortOrder | SortOrderInput No
contactSupportLink SortOrder | SortOrderInput No
dataRetentionDays SortOrder | SortOrderInput No
dataSharing SortOrder | SortOrderInput No
helpCenterLink SortOrder | SortOrderInput No
high_contrast_mode SortOrder | SortOrderInput No
in_app_notifications SortOrder | SortOrderInput No
key_board_shortcut SortOrder | SortOrderInput No
notification_frequency SortOrder | SortOrderInput No
notification_sound SortOrder | SortOrderInput No
notification_vibrate SortOrder | SortOrderInput No
password_reset SortOrder | SortOrderInput No
security_answer SortOrder | SortOrderInput No
security_question SortOrder | SortOrderInput No
username SortOrder | SortOrderInput No
version SortOrder No
Organization OrganizationOrderByRelationAggregateInput No
LoginRecord LoginRecordOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

OrganizationSettingsWhereUniqueInput

Name Type Nullable
id Int No
AND OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] No
OR OrganizationSettingsWhereInput[] No
NOT OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
language EnumLanguageFilter | Language No
time_format EnumTimeFormatFilter | TimeFormat No
date_format EnumDateFormatFilter | DateFormat No
timezone EnumTimezoneFilter | Timezone No
theme EnumThemeNullableFilter | Theme | Null Yes
email_notifications BoolFilter | Boolean No
phone_notification BoolFilter | Boolean No
push_notifications BoolFilter | Boolean No
two_factor_auth BoolNullableFilter | Boolean | Null Yes
loginRecordId IntNullableFilter | Int | Null Yes
accountDeactivation BoolNullableFilter | Boolean | Null Yes
avatar StringNullableFilter | String | Null Yes
clearBrowsingData BoolNullableFilter | Boolean | Null Yes
contactSupportLink StringNullableFilter | String | Null Yes
dataRetentionDays IntNullableFilter | Int | Null Yes
dataSharing BoolNullableFilter | Boolean | Null Yes
helpCenterLink StringNullableFilter | String | Null Yes
high_contrast_mode BoolNullableFilter | Boolean | Null Yes
in_app_notifications BoolNullableFilter | Boolean | Null Yes
key_board_shortcut BoolNullableFilter | Boolean | Null Yes
notification_frequency StringNullableFilter | String | Null Yes
notification_sound StringNullableFilter | String | Null Yes
notification_vibrate BoolNullableFilter | Boolean | Null Yes
password_reset BoolNullableFilter | Boolean | Null Yes
security_answer StringNullableFilter | String | Null Yes
security_question StringNullableFilter | String | Null Yes
username StringNullableFilter | String | Null Yes
version StringFilter | String No
Organization OrganizationListRelationFilter No
LoginRecord LoginRecordNullableRelationFilter | LoginRecordWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No

OrganizationSettingsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder | SortOrderInput No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder | SortOrderInput No
loginRecordId SortOrder | SortOrderInput No
accountDeactivation SortOrder | SortOrderInput No
avatar SortOrder | SortOrderInput No
clearBrowsingData SortOrder | SortOrderInput No
contactSupportLink SortOrder | SortOrderInput No
dataRetentionDays SortOrder | SortOrderInput No
dataSharing SortOrder | SortOrderInput No
helpCenterLink SortOrder | SortOrderInput No
high_contrast_mode SortOrder | SortOrderInput No
in_app_notifications SortOrder | SortOrderInput No
key_board_shortcut SortOrder | SortOrderInput No
notification_frequency SortOrder | SortOrderInput No
notification_sound SortOrder | SortOrderInput No
notification_vibrate SortOrder | SortOrderInput No
password_reset SortOrder | SortOrderInput No
security_answer SortOrder | SortOrderInput No
security_question SortOrder | SortOrderInput No
username SortOrder | SortOrderInput No
version SortOrder No
_count OrganizationSettingsCountOrderByAggregateInput No
_avg OrganizationSettingsAvgOrderByAggregateInput No
_max OrganizationSettingsMaxOrderByAggregateInput No
_min OrganizationSettingsMinOrderByAggregateInput No
_sum OrganizationSettingsSumOrderByAggregateInput No

OrganizationSettingsScalarWhereWithAggregatesInput

Name Type Nullable
AND OrganizationSettingsScalarWhereWithAggregatesInput | OrganizationSettingsScalarWhereWithAggregatesInput[] No
OR OrganizationSettingsScalarWhereWithAggregatesInput[] No
NOT OrganizationSettingsScalarWhereWithAggregatesInput | OrganizationSettingsScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
language EnumLanguageWithAggregatesFilter | Language No
time_format EnumTimeFormatWithAggregatesFilter | TimeFormat No
date_format EnumDateFormatWithAggregatesFilter | DateFormat No
timezone EnumTimezoneWithAggregatesFilter | Timezone No
theme EnumThemeNullableWithAggregatesFilter | Theme | Null Yes
email_notifications BoolWithAggregatesFilter | Boolean No
phone_notification BoolWithAggregatesFilter | Boolean No
push_notifications BoolWithAggregatesFilter | Boolean No
two_factor_auth BoolNullableWithAggregatesFilter | Boolean | Null Yes
loginRecordId IntNullableWithAggregatesFilter | Int | Null Yes
accountDeactivation BoolNullableWithAggregatesFilter | Boolean | Null Yes
avatar StringNullableWithAggregatesFilter | String | Null Yes
clearBrowsingData BoolNullableWithAggregatesFilter | Boolean | Null Yes
contactSupportLink StringNullableWithAggregatesFilter | String | Null Yes
dataRetentionDays IntNullableWithAggregatesFilter | Int | Null Yes
dataSharing BoolNullableWithAggregatesFilter | Boolean | Null Yes
helpCenterLink StringNullableWithAggregatesFilter | String | Null Yes
high_contrast_mode BoolNullableWithAggregatesFilter | Boolean | Null Yes
in_app_notifications BoolNullableWithAggregatesFilter | Boolean | Null Yes
key_board_shortcut BoolNullableWithAggregatesFilter | Boolean | Null Yes
notification_frequency StringNullableWithAggregatesFilter | String | Null Yes
notification_sound StringNullableWithAggregatesFilter | String | Null Yes
notification_vibrate BoolNullableWithAggregatesFilter | Boolean | Null Yes
password_reset BoolNullableWithAggregatesFilter | Boolean | Null Yes
security_answer StringNullableWithAggregatesFilter | String | Null Yes
security_question StringNullableWithAggregatesFilter | String | Null Yes
username StringNullableWithAggregatesFilter | String | Null Yes
version StringWithAggregatesFilter | String No

PersonWhereInput

Name Type Nullable
AND PersonWhereInput | PersonWhereInput[] No
OR PersonWhereInput[] No
NOT PersonWhereInput | PersonWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
first_name StringFilter | String No
last_name StringNullableFilter | String | Null Yes
father_name StringNullableFilter | String | Null Yes
mother_name StringNullableFilter | String | Null Yes
profession StringNullableFilter | String | Null Yes
dob DateTimeNullableFilter | DateTime | Null Yes
gender EnumGenderNullableFilter | Gender | Null Yes
version StringFilter | String No
avatar StringNullableFilter | String | Null Yes
contact_id IntFilter | Int No
teamId IntNullableFilter | Int | Null Yes
bid StringNullableFilter | String | Null Yes
driving StringNullableFilter | String | Null Yes
nid StringNullableFilter | String | Null Yes
passport StringNullableFilter | String | Null Yes
Ambulance AmbulanceListRelationFilter No
BloodCenter BloodCenterListRelationFilter No
BloodDonation BloodDonationListRelationFilter No
Club_Club_chairmanToPerson ClubListRelationFilter No
Club_Club_founderToPerson ClubListRelationFilter No
Club_Club_vice_chairmanToPerson ClubListRelationFilter No
Contact_Contact_personToPerson ContactListRelationFilter No
Donation DonationListRelationFilter No
Member MemberListRelationFilter No
Organization OrganizationListRelationFilter No
Contact_Person_contact_idToContact ContactRelationFilter | ContactWhereInput No
Team_Person_teamIdToTeam TeamNullableRelationFilter | TeamWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
Request RequestListRelationFilter No
SupportMessage SupportMessageListRelationFilter No
Team_Team_membersToPerson TeamListRelationFilter No
User UserListRelationFilter No

PersonOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
first_name SortOrder No
last_name SortOrder | SortOrderInput No
father_name SortOrder | SortOrderInput No
mother_name SortOrder | SortOrderInput No
profession SortOrder | SortOrderInput No
dob SortOrder | SortOrderInput No
gender SortOrder | SortOrderInput No
version SortOrder No
avatar SortOrder | SortOrderInput No
contact_id SortOrder No
teamId SortOrder | SortOrderInput No
bid SortOrder | SortOrderInput No
driving SortOrder | SortOrderInput No
nid SortOrder | SortOrderInput No
passport SortOrder | SortOrderInput No
Ambulance AmbulanceOrderByRelationAggregateInput No
BloodCenter BloodCenterOrderByRelationAggregateInput No
BloodDonation BloodDonationOrderByRelationAggregateInput No
Club_Club_chairmanToPerson ClubOrderByRelationAggregateInput No
Club_Club_founderToPerson ClubOrderByRelationAggregateInput No
Club_Club_vice_chairmanToPerson ClubOrderByRelationAggregateInput No
Contact_Contact_personToPerson ContactOrderByRelationAggregateInput No
Donation DonationOrderByRelationAggregateInput No
Member MemberOrderByRelationAggregateInput No
Organization OrganizationOrderByRelationAggregateInput No
Contact_Person_contact_idToContact ContactOrderByWithRelationInput No
Team_Person_teamIdToTeam TeamOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
Request RequestOrderByRelationAggregateInput No
SupportMessage SupportMessageOrderByRelationAggregateInput No
Team_Team_membersToPerson TeamOrderByRelationAggregateInput No
User UserOrderByRelationAggregateInput No

PersonWhereUniqueInput

Name Type Nullable
id Int No
AND PersonWhereInput | PersonWhereInput[] No
OR PersonWhereInput[] No
NOT PersonWhereInput | PersonWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
first_name StringFilter | String No
last_name StringNullableFilter | String | Null Yes
father_name StringNullableFilter | String | Null Yes
mother_name StringNullableFilter | String | Null Yes
profession StringNullableFilter | String | Null Yes
dob DateTimeNullableFilter | DateTime | Null Yes
gender EnumGenderNullableFilter | Gender | Null Yes
version StringFilter | String No
avatar StringNullableFilter | String | Null Yes
contact_id IntFilter | Int No
teamId IntNullableFilter | Int | Null Yes
bid StringNullableFilter | String | Null Yes
driving StringNullableFilter | String | Null Yes
nid StringNullableFilter | String | Null Yes
passport StringNullableFilter | String | Null Yes
Ambulance AmbulanceListRelationFilter No
BloodCenter BloodCenterListRelationFilter No
BloodDonation BloodDonationListRelationFilter No
Club_Club_chairmanToPerson ClubListRelationFilter No
Club_Club_founderToPerson ClubListRelationFilter No
Club_Club_vice_chairmanToPerson ClubListRelationFilter No
Contact_Contact_personToPerson ContactListRelationFilter No
Donation DonationListRelationFilter No
Member MemberListRelationFilter No
Organization OrganizationListRelationFilter No
Contact_Person_contact_idToContact ContactRelationFilter | ContactWhereInput No
Team_Person_teamIdToTeam TeamNullableRelationFilter | TeamWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No
Request RequestListRelationFilter No
SupportMessage SupportMessageListRelationFilter No
Team_Team_membersToPerson TeamListRelationFilter No
User UserListRelationFilter No

PersonOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
first_name SortOrder No
last_name SortOrder | SortOrderInput No
father_name SortOrder | SortOrderInput No
mother_name SortOrder | SortOrderInput No
profession SortOrder | SortOrderInput No
dob SortOrder | SortOrderInput No
gender SortOrder | SortOrderInput No
version SortOrder No
avatar SortOrder | SortOrderInput No
contact_id SortOrder No
teamId SortOrder | SortOrderInput No
bid SortOrder | SortOrderInput No
driving SortOrder | SortOrderInput No
nid SortOrder | SortOrderInput No
passport SortOrder | SortOrderInput No
_count PersonCountOrderByAggregateInput No
_avg PersonAvgOrderByAggregateInput No
_max PersonMaxOrderByAggregateInput No
_min PersonMinOrderByAggregateInput No
_sum PersonSumOrderByAggregateInput No

PersonScalarWhereWithAggregatesInput

Name Type Nullable
AND PersonScalarWhereWithAggregatesInput | PersonScalarWhereWithAggregatesInput[] No
OR PersonScalarWhereWithAggregatesInput[] No
NOT PersonScalarWhereWithAggregatesInput | PersonScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
first_name StringWithAggregatesFilter | String No
last_name StringNullableWithAggregatesFilter | String | Null Yes
father_name StringNullableWithAggregatesFilter | String | Null Yes
mother_name StringNullableWithAggregatesFilter | String | Null Yes
profession StringNullableWithAggregatesFilter | String | Null Yes
dob DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
gender EnumGenderNullableWithAggregatesFilter | Gender | Null Yes
version StringWithAggregatesFilter | String No
avatar StringNullableWithAggregatesFilter | String | Null Yes
contact_id IntWithAggregatesFilter | Int No
teamId IntNullableWithAggregatesFilter | Int | Null Yes
bid StringNullableWithAggregatesFilter | String | Null Yes
driving StringNullableWithAggregatesFilter | String | Null Yes
nid StringNullableWithAggregatesFilter | String | Null Yes
passport StringNullableWithAggregatesFilter | String | Null Yes

RequestWhereInput

Name Type Nullable
AND RequestWhereInput | RequestWhereInput[] No
OR RequestWhereInput[] No
NOT RequestWhereInput | RequestWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
health_issue StringFilter | String No
blood_group EnumBloodGroupFilter | BloodGroup No
quantity IntFilter | Int No
donation_type StringFilter | String No
datetime DateTimeFilter | DateTime No
hospital_name StringFilter | String No
hospital_address StringFilter | String No
hospital_phone StringFilter | String No
hospital_email StringFilter | String No
version StringFilter | String No
memberId IntNullableFilter | Int | Null Yes
personId IntFilter | Int No
Member MemberNullableRelationFilter | MemberWhereInput | Null Yes
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

RequestOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
health_issue SortOrder No
blood_group SortOrder No
quantity SortOrder No
donation_type SortOrder No
datetime SortOrder No
hospital_name SortOrder No
hospital_address SortOrder No
hospital_phone SortOrder No
hospital_email SortOrder No
version SortOrder No
memberId SortOrder | SortOrderInput No
personId SortOrder No
Member MemberOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

RequestWhereUniqueInput

Name Type Nullable
id Int No
AND RequestWhereInput | RequestWhereInput[] No
OR RequestWhereInput[] No
NOT RequestWhereInput | RequestWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
health_issue StringFilter | String No
blood_group EnumBloodGroupFilter | BloodGroup No
quantity IntFilter | Int No
donation_type StringFilter | String No
datetime DateTimeFilter | DateTime No
hospital_name StringFilter | String No
hospital_address StringFilter | String No
hospital_phone StringFilter | String No
hospital_email StringFilter | String No
version StringFilter | String No
memberId IntNullableFilter | Int | Null Yes
personId IntFilter | Int No
Member MemberNullableRelationFilter | MemberWhereInput | Null Yes
Person PersonRelationFilter | PersonWhereInput No
Version VersionRelationFilter | VersionWhereInput No

RequestOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
health_issue SortOrder No
blood_group SortOrder No
quantity SortOrder No
donation_type SortOrder No
datetime SortOrder No
hospital_name SortOrder No
hospital_address SortOrder No
hospital_phone SortOrder No
hospital_email SortOrder No
version SortOrder No
memberId SortOrder | SortOrderInput No
personId SortOrder No
_count RequestCountOrderByAggregateInput No
_avg RequestAvgOrderByAggregateInput No
_max RequestMaxOrderByAggregateInput No
_min RequestMinOrderByAggregateInput No
_sum RequestSumOrderByAggregateInput No

RequestScalarWhereWithAggregatesInput

Name Type Nullable
AND RequestScalarWhereWithAggregatesInput | RequestScalarWhereWithAggregatesInput[] No
OR RequestScalarWhereWithAggregatesInput[] No
NOT RequestScalarWhereWithAggregatesInput | RequestScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
health_issue StringWithAggregatesFilter | String No
blood_group EnumBloodGroupWithAggregatesFilter | BloodGroup No
quantity IntWithAggregatesFilter | Int No
donation_type StringWithAggregatesFilter | String No
datetime DateTimeWithAggregatesFilter | DateTime No
hospital_name StringWithAggregatesFilter | String No
hospital_address StringWithAggregatesFilter | String No
hospital_phone StringWithAggregatesFilter | String No
hospital_email StringWithAggregatesFilter | String No
version StringWithAggregatesFilter | String No
memberId IntNullableWithAggregatesFilter | Int | Null Yes
personId IntWithAggregatesFilter | Int No

SecurityQuestionWhereInput

Name Type Nullable
AND SecurityQuestionWhereInput | SecurityQuestionWhereInput[] No
OR SecurityQuestionWhereInput[] No
NOT SecurityQuestionWhereInput | SecurityQuestionWhereInput[] No
id IntFilter | Int No
question StringFilter | String No
answer StringFilter | String No
userId IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
User UserRelationFilter | UserWhereInput No
Version VersionRelationFilter | VersionWhereInput No
UserSettings UserSettingsListRelationFilter No

SecurityQuestionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
question SortOrder No
answer SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
User UserOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
UserSettings UserSettingsOrderByRelationAggregateInput No

SecurityQuestionWhereUniqueInput

Name Type Nullable
id Int No
AND SecurityQuestionWhereInput | SecurityQuestionWhereInput[] No
OR SecurityQuestionWhereInput[] No
NOT SecurityQuestionWhereInput | SecurityQuestionWhereInput[] No
question StringFilter | String No
answer StringFilter | String No
userId IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
User UserRelationFilter | UserWhereInput No
Version VersionRelationFilter | VersionWhereInput No
UserSettings UserSettingsListRelationFilter No

SecurityQuestionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
question SortOrder No
answer SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
_count SecurityQuestionCountOrderByAggregateInput No
_avg SecurityQuestionAvgOrderByAggregateInput No
_max SecurityQuestionMaxOrderByAggregateInput No
_min SecurityQuestionMinOrderByAggregateInput No
_sum SecurityQuestionSumOrderByAggregateInput No


SocialMediaLinksWhereInput

Name Type Nullable
AND SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] No
OR SocialMediaLinksWhereInput[] No
NOT SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] No
id IntFilter | Int No
facebook StringNullableFilter | String | Null Yes
twitter StringNullableFilter | String | Null Yes
instagram StringNullableFilter | String | Null Yes
userId IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
Version VersionRelationFilter | VersionWhereInput No
User UserListRelationFilter No

SocialMediaLinksOrderByWithRelationInput

Name Type Nullable
id SortOrder No
facebook SortOrder | SortOrderInput No
twitter SortOrder | SortOrderInput No
instagram SortOrder | SortOrderInput No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
Version VersionOrderByWithRelationInput No
User UserOrderByRelationAggregateInput No

SocialMediaLinksWhereUniqueInput

Name Type Nullable
id Int No
AND SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] No
OR SocialMediaLinksWhereInput[] No
NOT SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] No
facebook StringNullableFilter | String | Null Yes
twitter StringNullableFilter | String | Null Yes
instagram StringNullableFilter | String | Null Yes
userId IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
Version VersionRelationFilter | VersionWhereInput No
User UserListRelationFilter No

SocialMediaLinksOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
facebook SortOrder | SortOrderInput No
twitter SortOrder | SortOrderInput No
instagram SortOrder | SortOrderInput No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
_count SocialMediaLinksCountOrderByAggregateInput No
_avg SocialMediaLinksAvgOrderByAggregateInput No
_max SocialMediaLinksMaxOrderByAggregateInput No
_min SocialMediaLinksMinOrderByAggregateInput No
_sum SocialMediaLinksSumOrderByAggregateInput No


SupportWhereInput

Name Type Nullable
AND SupportWhereInput | SupportWhereInput[] No
OR SupportWhereInput[] No
NOT SupportWhereInput | SupportWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
organization IntFilter | Int No
messages StringNullableFilter | String | Null Yes
status StringNullableFilter | String | Null Yes
priority IntFilter | Int No
subject StringNullableFilter | String | Null Yes
Organization OrganizationRelationFilter | OrganizationWhereInput No
Version VersionRelationFilter | VersionWhereInput No
SupportMessage SupportMessageListRelationFilter No

SupportOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
organization SortOrder No
messages SortOrder | SortOrderInput No
status SortOrder | SortOrderInput No
priority SortOrder No
subject SortOrder | SortOrderInput No
Organization OrganizationOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
SupportMessage SupportMessageOrderByRelationAggregateInput No

SupportWhereUniqueInput

Name Type Nullable
id Int No
AND SupportWhereInput | SupportWhereInput[] No
OR SupportWhereInput[] No
NOT SupportWhereInput | SupportWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
organization IntFilter | Int No
messages StringNullableFilter | String | Null Yes
status StringNullableFilter | String | Null Yes
priority IntFilter | Int No
subject StringNullableFilter | String | Null Yes
Organization OrganizationRelationFilter | OrganizationWhereInput No
Version VersionRelationFilter | VersionWhereInput No
SupportMessage SupportMessageListRelationFilter No

SupportOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
organization SortOrder No
messages SortOrder | SortOrderInput No
status SortOrder | SortOrderInput No
priority SortOrder No
subject SortOrder | SortOrderInput No
_count SupportCountOrderByAggregateInput No
_avg SupportAvgOrderByAggregateInput No
_max SupportMaxOrderByAggregateInput No
_min SupportMinOrderByAggregateInput No
_sum SupportSumOrderByAggregateInput No

SupportScalarWhereWithAggregatesInput

Name Type Nullable
AND SupportScalarWhereWithAggregatesInput | SupportScalarWhereWithAggregatesInput[] No
OR SupportScalarWhereWithAggregatesInput[] No
NOT SupportScalarWhereWithAggregatesInput | SupportScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
version StringWithAggregatesFilter | String No
organization IntWithAggregatesFilter | Int No
messages StringNullableWithAggregatesFilter | String | Null Yes
status StringNullableWithAggregatesFilter | String | Null Yes
priority IntWithAggregatesFilter | Int No
subject StringNullableWithAggregatesFilter | String | Null Yes

SupportMessageWhereInput

Name Type Nullable
AND SupportMessageWhereInput | SupportMessageWhereInput[] No
OR SupportMessageWhereInput[] No
NOT SupportMessageWhereInput | SupportMessageWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
organization IntFilter | Int No
support IntFilter | Int No
message StringFilter | String No
author IntFilter | Int No
version StringFilter | String No
Person PersonRelationFilter | PersonWhereInput No
Organization OrganizationRelationFilter | OrganizationWhereInput No
Support SupportRelationFilter | SupportWhereInput No
Version VersionRelationFilter | VersionWhereInput No

SupportMessageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
organization SortOrder No
support SortOrder No
message SortOrder No
author SortOrder No
version SortOrder No
Person PersonOrderByWithRelationInput No
Organization OrganizationOrderByWithRelationInput No
Support SupportOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

SupportMessageWhereUniqueInput

Name Type Nullable
id Int No
AND SupportMessageWhereInput | SupportMessageWhereInput[] No
OR SupportMessageWhereInput[] No
NOT SupportMessageWhereInput | SupportMessageWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
organization IntFilter | Int No
support IntFilter | Int No
message StringFilter | String No
author IntFilter | Int No
version StringFilter | String No
Person PersonRelationFilter | PersonWhereInput No
Organization OrganizationRelationFilter | OrganizationWhereInput No
Support SupportRelationFilter | SupportWhereInput No
Version VersionRelationFilter | VersionWhereInput No

SupportMessageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
organization SortOrder No
support SortOrder No
message SortOrder No
author SortOrder No
version SortOrder No
_count SupportMessageCountOrderByAggregateInput No
_avg SupportMessageAvgOrderByAggregateInput No
_max SupportMessageMaxOrderByAggregateInput No
_min SupportMessageMinOrderByAggregateInput No
_sum SupportMessageSumOrderByAggregateInput No


TeamWhereInput

Name Type Nullable
AND TeamWhereInput | TeamWhereInput[] No
OR TeamWhereInput[] No
NOT TeamWhereInput | TeamWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
started_at DateTimeFilter | DateTime No
ended_at DateTimeFilter | DateTime No
organization IntFilter | Int No
version StringFilter | String No
members IntFilter | Int No
status StringFilter | String No
Person_Person_teamIdToTeam PersonListRelationFilter No
Person_Team_membersToPerson PersonRelationFilter | PersonWhereInput No
Organization OrganizationRelationFilter | OrganizationWhereInput No
Version VersionRelationFilter | VersionWhereInput No

TeamOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
started_at SortOrder No
ended_at SortOrder No
organization SortOrder No
version SortOrder No
members SortOrder No
status SortOrder No
Person_Person_teamIdToTeam PersonOrderByRelationAggregateInput No
Person_Team_membersToPerson PersonOrderByWithRelationInput No
Organization OrganizationOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

TeamWhereUniqueInput

Name Type Nullable
id Int No
AND TeamWhereInput | TeamWhereInput[] No
OR TeamWhereInput[] No
NOT TeamWhereInput | TeamWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
started_at DateTimeFilter | DateTime No
ended_at DateTimeFilter | DateTime No
organization IntFilter | Int No
version StringFilter | String No
members IntFilter | Int No
status StringFilter | String No
Person_Person_teamIdToTeam PersonListRelationFilter No
Person_Team_membersToPerson PersonRelationFilter | PersonWhereInput No
Organization OrganizationRelationFilter | OrganizationWhereInput No
Version VersionRelationFilter | VersionWhereInput No

TeamOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
started_at SortOrder No
ended_at SortOrder No
organization SortOrder No
version SortOrder No
members SortOrder No
status SortOrder No
_count TeamCountOrderByAggregateInput No
_avg TeamAvgOrderByAggregateInput No
_max TeamMaxOrderByAggregateInput No
_min TeamMinOrderByAggregateInput No
_sum TeamSumOrderByAggregateInput No

TeamScalarWhereWithAggregatesInput

Name Type Nullable
AND TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] No
OR TeamScalarWhereWithAggregatesInput[] No
NOT TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
started_at DateTimeWithAggregatesFilter | DateTime No
ended_at DateTimeWithAggregatesFilter | DateTime No
organization IntWithAggregatesFilter | Int No
version StringWithAggregatesFilter | String No
members IntWithAggregatesFilter | Int No
status StringWithAggregatesFilter | String No

TwoFactorAuthWhereInput

Name Type Nullable
AND TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] No
OR TwoFactorAuthWhereInput[] No
NOT TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] No
id IntFilter | Int No
is_enabled BoolFilter | Boolean No
secret_key StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
Version VersionRelationFilter | VersionWhereInput No
User UserListRelationFilter No

TwoFactorAuthOrderByWithRelationInput

Name Type Nullable
id SortOrder No
is_enabled SortOrder No
secret_key SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
Version VersionOrderByWithRelationInput No
User UserOrderByRelationAggregateInput No

TwoFactorAuthWhereUniqueInput

Name Type Nullable
id Int No
AND TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] No
OR TwoFactorAuthWhereInput[] No
NOT TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] No
is_enabled BoolFilter | Boolean No
secret_key StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
Version VersionRelationFilter | VersionWhereInput No
User UserListRelationFilter No

TwoFactorAuthOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
is_enabled SortOrder No
secret_key SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
_count TwoFactorAuthCountOrderByAggregateInput No
_avg TwoFactorAuthAvgOrderByAggregateInput No
_max TwoFactorAuthMaxOrderByAggregateInput No
_min TwoFactorAuthMinOrderByAggregateInput No
_sum TwoFactorAuthSumOrderByAggregateInput No


UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id IntFilter | Int No
username StringNullableFilter | String | Null Yes
email StringFilter | String No
password StringFilter | String No
status EnumAccountStatusFilter | AccountStatus No
ip StringFilter | String No
two_factor_auth IntFilter | Int No
social_login IntFilter | Int No
logins IntFilter | Int No
person IntFilter | Int No
settings IntFilter | Int No
version StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
SecurityQuestion SecurityQuestionListRelationFilter No
LoginRecord LoginRecordRelationFilter | LoginRecordWhereInput No
Person PersonRelationFilter | PersonWhereInput No
SocialMediaLinks SocialMediaLinksRelationFilter | SocialMediaLinksWhereInput No
TwoFactorAuth TwoFactorAuthRelationFilter | TwoFactorAuthWhereInput No
UserSettings UserSettingsRelationFilter | UserSettingsWhereInput No
Version VersionRelationFilter | VersionWhereInput No
UserRole UserRoleListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
username SortOrder | SortOrderInput No
email SortOrder No
password SortOrder No
status SortOrder No
ip SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
SecurityQuestion SecurityQuestionOrderByRelationAggregateInput No
LoginRecord LoginRecordOrderByWithRelationInput No
Person PersonOrderByWithRelationInput No
SocialMediaLinks SocialMediaLinksOrderByWithRelationInput No
TwoFactorAuth TwoFactorAuthOrderByWithRelationInput No
UserSettings UserSettingsOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No
UserRole UserRoleOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
id Int No
username String No
email String No
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
password StringFilter | String No
status EnumAccountStatusFilter | AccountStatus No
ip StringFilter | String No
two_factor_auth IntFilter | Int No
social_login IntFilter | Int No
logins IntFilter | Int No
person IntFilter | Int No
settings IntFilter | Int No
version StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
SecurityQuestion SecurityQuestionListRelationFilter No
LoginRecord LoginRecordRelationFilter | LoginRecordWhereInput No
Person PersonRelationFilter | PersonWhereInput No
SocialMediaLinks SocialMediaLinksRelationFilter | SocialMediaLinksWhereInput No
TwoFactorAuth TwoFactorAuthRelationFilter | TwoFactorAuthWhereInput No
UserSettings UserSettingsRelationFilter | UserSettingsWhereInput No
Version VersionRelationFilter | VersionWhereInput No
UserRole UserRoleListRelationFilter No

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
username SortOrder | SortOrderInput No
email SortOrder No
password SortOrder No
status SortOrder No
ip SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
_count UserCountOrderByAggregateInput No
_avg UserAvgOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No
_sum UserSumOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
username StringNullableWithAggregatesFilter | String | Null Yes
email StringWithAggregatesFilter | String No
password StringWithAggregatesFilter | String No
status EnumAccountStatusWithAggregatesFilter | AccountStatus No
ip StringWithAggregatesFilter | String No
two_factor_auth IntWithAggregatesFilter | Int No
social_login IntWithAggregatesFilter | Int No
logins IntWithAggregatesFilter | Int No
person IntWithAggregatesFilter | Int No
settings IntWithAggregatesFilter | Int No
version StringWithAggregatesFilter | String No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

UserRoleWhereInput

Name Type Nullable
AND UserRoleWhereInput | UserRoleWhereInput[] No
OR UserRoleWhereInput[] No
NOT UserRoleWhereInput | UserRoleWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
User UserRelationFilter | UserWhereInput No
Version VersionRelationFilter | VersionWhereInput No

UserRoleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
User UserOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

UserRoleWhereUniqueInput

Name Type Nullable
id Int No
AND UserRoleWhereInput | UserRoleWhereInput[] No
OR UserRoleWhereInput[] No
NOT UserRoleWhereInput | UserRoleWhereInput[] No
name StringFilter | String No
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
User UserRelationFilter | UserWhereInput No
Version VersionRelationFilter | VersionWhereInput No

UserRoleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
_count UserRoleCountOrderByAggregateInput No
_avg UserRoleAvgOrderByAggregateInput No
_max UserRoleMaxOrderByAggregateInput No
_min UserRoleMinOrderByAggregateInput No
_sum UserRoleSumOrderByAggregateInput No


UserSettingsWhereInput

Name Type Nullable
AND UserSettingsWhereInput | UserSettingsWhereInput[] No
OR UserSettingsWhereInput[] No
NOT UserSettingsWhereInput | UserSettingsWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
language EnumLanguageFilter | Language No
time_format EnumTimeFormatFilter | TimeFormat No
date_format EnumDateFormatFilter | DateFormat No
timezone EnumTimezoneFilter | Timezone No
theme EnumThemeNullableFilter | Theme | Null Yes
email_notifications BoolFilter | Boolean No
phone_notification BoolFilter | Boolean No
push_notifications BoolFilter | Boolean No
two_factor_auth BoolNullableFilter | Boolean | Null Yes
login_record_id IntFilter | Int No
high_contrast_mode BoolNullableFilter | Boolean | Null Yes
in_app_notifications BoolNullableFilter | Boolean | Null Yes
key_board_shortcut BoolNullableFilter | Boolean | Null Yes
notification_frequency StringNullableFilter | String | Null Yes
notification_sound StringNullableFilter | String | Null Yes
notification_vibrate BoolNullableFilter | Boolean | Null Yes
password_reset BoolNullableFilter | Boolean | Null Yes
version StringFilter | String No
security_question IntNullableFilter | Int | Null Yes
User UserListRelationFilter No
LoginRecord LoginRecordRelationFilter | LoginRecordWhereInput No
SecurityQuestion SecurityQuestionNullableRelationFilter | SecurityQuestionWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No

UserSettingsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder | SortOrderInput No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder | SortOrderInput No
login_record_id SortOrder No
high_contrast_mode SortOrder | SortOrderInput No
in_app_notifications SortOrder | SortOrderInput No
key_board_shortcut SortOrder | SortOrderInput No
notification_frequency SortOrder | SortOrderInput No
notification_sound SortOrder | SortOrderInput No
notification_vibrate SortOrder | SortOrderInput No
password_reset SortOrder | SortOrderInput No
version SortOrder No
security_question SortOrder | SortOrderInput No
User UserOrderByRelationAggregateInput No
LoginRecord LoginRecordOrderByWithRelationInput No
SecurityQuestion SecurityQuestionOrderByWithRelationInput No
Version VersionOrderByWithRelationInput No

UserSettingsWhereUniqueInput

Name Type Nullable
id Int No
AND UserSettingsWhereInput | UserSettingsWhereInput[] No
OR UserSettingsWhereInput[] No
NOT UserSettingsWhereInput | UserSettingsWhereInput[] No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
language EnumLanguageFilter | Language No
time_format EnumTimeFormatFilter | TimeFormat No
date_format EnumDateFormatFilter | DateFormat No
timezone EnumTimezoneFilter | Timezone No
theme EnumThemeNullableFilter | Theme | Null Yes
email_notifications BoolFilter | Boolean No
phone_notification BoolFilter | Boolean No
push_notifications BoolFilter | Boolean No
two_factor_auth BoolNullableFilter | Boolean | Null Yes
login_record_id IntFilter | Int No
high_contrast_mode BoolNullableFilter | Boolean | Null Yes
in_app_notifications BoolNullableFilter | Boolean | Null Yes
key_board_shortcut BoolNullableFilter | Boolean | Null Yes
notification_frequency StringNullableFilter | String | Null Yes
notification_sound StringNullableFilter | String | Null Yes
notification_vibrate BoolNullableFilter | Boolean | Null Yes
password_reset BoolNullableFilter | Boolean | Null Yes
version StringFilter | String No
security_question IntNullableFilter | Int | Null Yes
User UserListRelationFilter No
LoginRecord LoginRecordRelationFilter | LoginRecordWhereInput No
SecurityQuestion SecurityQuestionNullableRelationFilter | SecurityQuestionWhereInput | Null Yes
Version VersionRelationFilter | VersionWhereInput No

UserSettingsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder | SortOrderInput No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder | SortOrderInput No
login_record_id SortOrder No
high_contrast_mode SortOrder | SortOrderInput No
in_app_notifications SortOrder | SortOrderInput No
key_board_shortcut SortOrder | SortOrderInput No
notification_frequency SortOrder | SortOrderInput No
notification_sound SortOrder | SortOrderInput No
notification_vibrate SortOrder | SortOrderInput No
password_reset SortOrder | SortOrderInput No
version SortOrder No
security_question SortOrder | SortOrderInput No
_count UserSettingsCountOrderByAggregateInput No
_avg UserSettingsAvgOrderByAggregateInput No
_max UserSettingsMaxOrderByAggregateInput No
_min UserSettingsMinOrderByAggregateInput No
_sum UserSettingsSumOrderByAggregateInput No

UserSettingsScalarWhereWithAggregatesInput

Name Type Nullable
AND UserSettingsScalarWhereWithAggregatesInput | UserSettingsScalarWhereWithAggregatesInput[] No
OR UserSettingsScalarWhereWithAggregatesInput[] No
NOT UserSettingsScalarWhereWithAggregatesInput | UserSettingsScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
language EnumLanguageWithAggregatesFilter | Language No
time_format EnumTimeFormatWithAggregatesFilter | TimeFormat No
date_format EnumDateFormatWithAggregatesFilter | DateFormat No
timezone EnumTimezoneWithAggregatesFilter | Timezone No
theme EnumThemeNullableWithAggregatesFilter | Theme | Null Yes
email_notifications BoolWithAggregatesFilter | Boolean No
phone_notification BoolWithAggregatesFilter | Boolean No
push_notifications BoolWithAggregatesFilter | Boolean No
two_factor_auth BoolNullableWithAggregatesFilter | Boolean | Null Yes
login_record_id IntWithAggregatesFilter | Int No
high_contrast_mode BoolNullableWithAggregatesFilter | Boolean | Null Yes
in_app_notifications BoolNullableWithAggregatesFilter | Boolean | Null Yes
key_board_shortcut BoolNullableWithAggregatesFilter | Boolean | Null Yes
notification_frequency StringNullableWithAggregatesFilter | String | Null Yes
notification_sound StringNullableWithAggregatesFilter | String | Null Yes
notification_vibrate BoolNullableWithAggregatesFilter | Boolean | Null Yes
password_reset BoolNullableWithAggregatesFilter | Boolean | Null Yes
version StringWithAggregatesFilter | String No
security_question IntNullableWithAggregatesFilter | Int | Null Yes

VersionWhereInput

Name Type Nullable
AND VersionWhereInput | VersionWhereInput[] No
OR VersionWhereInput[] No
NOT VersionWhereInput | VersionWhereInput[] No
id IntFilter | Int No
slug StringFilter | String No
title StringFilter | String No
description StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringNullableFilter | String | Null Yes
Ambulance AmbulanceListRelationFilter No
BloodCenter BloodCenterListRelationFilter No
BloodDonation BloodDonationListRelationFilter No
Club ClubListRelationFilter No
Contact ContactListRelationFilter No
Country CountryListRelationFilter No
Device DeviceListRelationFilter No
Donation DonationListRelationFilter No
Hospital HospitalListRelationFilter No
Location LocationListRelationFilter No
LoginRecord LoginRecordListRelationFilter No
Member MemberListRelationFilter No
Organization OrganizationListRelationFilter No
OrganizationSettings OrganizationSettingsListRelationFilter No
Person PersonListRelationFilter No
Request RequestListRelationFilter No
SecurityQuestion SecurityQuestionListRelationFilter No
SocialMediaLinks SocialMediaLinksListRelationFilter No
Support SupportListRelationFilter No
SupportMessage SupportMessageListRelationFilter No
Team TeamListRelationFilter No
TwoFactorAuth TwoFactorAuthListRelationFilter No
User UserListRelationFilter No
UserRole UserRoleListRelationFilter No
UserSettings UserSettingsListRelationFilter No

VersionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
slug SortOrder No
title SortOrder No
description SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
version SortOrder | SortOrderInput No
Ambulance AmbulanceOrderByRelationAggregateInput No
BloodCenter BloodCenterOrderByRelationAggregateInput No
BloodDonation BloodDonationOrderByRelationAggregateInput No
Club ClubOrderByRelationAggregateInput No
Contact ContactOrderByRelationAggregateInput No
Country CountryOrderByRelationAggregateInput No
Device DeviceOrderByRelationAggregateInput No
Donation DonationOrderByRelationAggregateInput No
Hospital HospitalOrderByRelationAggregateInput No
Location LocationOrderByRelationAggregateInput No
LoginRecord LoginRecordOrderByRelationAggregateInput No
Member MemberOrderByRelationAggregateInput No
Organization OrganizationOrderByRelationAggregateInput No
OrganizationSettings OrganizationSettingsOrderByRelationAggregateInput No
Person PersonOrderByRelationAggregateInput No
Request RequestOrderByRelationAggregateInput No
SecurityQuestion SecurityQuestionOrderByRelationAggregateInput No
SocialMediaLinks SocialMediaLinksOrderByRelationAggregateInput No
Support SupportOrderByRelationAggregateInput No
SupportMessage SupportMessageOrderByRelationAggregateInput No
Team TeamOrderByRelationAggregateInput No
TwoFactorAuth TwoFactorAuthOrderByRelationAggregateInput No
User UserOrderByRelationAggregateInput No
UserRole UserRoleOrderByRelationAggregateInput No
UserSettings UserSettingsOrderByRelationAggregateInput No

VersionWhereUniqueInput

Name Type Nullable
id Int No
slug String No
id_slug VersionIdSlugCompoundUniqueInput No
AND VersionWhereInput | VersionWhereInput[] No
OR VersionWhereInput[] No
NOT VersionWhereInput | VersionWhereInput[] No
title StringFilter | String No
description StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringNullableFilter | String | Null Yes
Ambulance AmbulanceListRelationFilter No
BloodCenter BloodCenterListRelationFilter No
BloodDonation BloodDonationListRelationFilter No
Club ClubListRelationFilter No
Contact ContactListRelationFilter No
Country CountryListRelationFilter No
Device DeviceListRelationFilter No
Donation DonationListRelationFilter No
Hospital HospitalListRelationFilter No
Location LocationListRelationFilter No
LoginRecord LoginRecordListRelationFilter No
Member MemberListRelationFilter No
Organization OrganizationListRelationFilter No
OrganizationSettings OrganizationSettingsListRelationFilter No
Person PersonListRelationFilter No
Request RequestListRelationFilter No
SecurityQuestion SecurityQuestionListRelationFilter No
SocialMediaLinks SocialMediaLinksListRelationFilter No
Support SupportListRelationFilter No
SupportMessage SupportMessageListRelationFilter No
Team TeamListRelationFilter No
TwoFactorAuth TwoFactorAuthListRelationFilter No
User UserListRelationFilter No
UserRole UserRoleListRelationFilter No
UserSettings UserSettingsListRelationFilter No

VersionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
slug SortOrder No
title SortOrder No
description SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
version SortOrder | SortOrderInput No
_count VersionCountOrderByAggregateInput No
_avg VersionAvgOrderByAggregateInput No
_max VersionMaxOrderByAggregateInput No
_min VersionMinOrderByAggregateInput No
_sum VersionSumOrderByAggregateInput No


AccountUpdateInput

Name Type Nullable
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | NullableStringFieldUpdateOperationsInput | Null Yes
providerAccountId String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at BigInt | NullableBigIntFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | StringFieldUpdateOperationsInput No
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateInput

Name Type Nullable
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | NullableStringFieldUpdateOperationsInput | Null Yes
providerAccountId String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at BigInt | NullableBigIntFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | StringFieldUpdateOperationsInput No
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUpdateManyMutationInput

Name Type Nullable
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | NullableStringFieldUpdateOperationsInput | Null Yes
providerAccountId String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at BigInt | NullableBigIntFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | StringFieldUpdateOperationsInput No
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyInput

Name Type Nullable
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
type String | NullableStringFieldUpdateOperationsInput | Null Yes
provider String | NullableStringFieldUpdateOperationsInput | Null Yes
providerAccountId String | NullableStringFieldUpdateOperationsInput | Null Yes
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at BigInt | NullableBigIntFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | StringFieldUpdateOperationsInput No
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes
Contact ContactCreateNestedOneWithoutAmbulanceInput No
Organization OrganizationCreateNestedOneWithoutAmbulanceInput No
Person PersonCreateNestedOneWithoutAmbulanceInput No
Version VersionCreateNestedOneWithoutAmbulanceInput No

AmbulanceUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
version String No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes


AmbulanceUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
version String No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

AmbulanceUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodCenterCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
established_at DateTime No
title String No
Contact_BloodCenter_contactToContact ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput No
Person PersonCreateNestedOneWithoutBloodCenterInput No
Version VersionCreateNestedOneWithoutBloodCenterInput No
BloodDonation BloodDonationCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
contact Int | Null Yes
title String No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No


BloodCenterUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
contact Int | Null Yes
title String No

BloodCenterUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No

BloodCenterUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No

BloodDonationCreateInput

Name Type Nullable
amount Int No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes
BloodCenter BloodCenterCreateNestedOneWithoutBloodDonationInput No
Person PersonCreateNestedOneWithoutBloodDonationInput No
Version VersionCreateNestedOneWithoutBloodDonationInput No

BloodDonationUncheckedCreateInput

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

BloodDonationUpdateInput

Name Type Nullable
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUpdateOneRequiredWithoutBloodDonationNestedInput No
Person PersonUpdateOneRequiredWithoutBloodDonationNestedInput No
Version VersionUpdateOneRequiredWithoutBloodDonationNestedInput No

BloodDonationUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
donor_id Int | IntFieldUpdateOperationsInput No
organization_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodDonationCreateManyInput

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

BloodDonationUpdateManyMutationInput

Name Type Nullable
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodDonationUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
donor_id Int | IntFieldUpdateOperationsInput No
organization_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

ClubCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No


ClubCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No

ClubUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No

ClubUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No

ContactCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes

ContactUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No

ContactUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes

CountryCreateInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Contact ContactCreateNestedManyWithoutCountryInput No
Version VersionCreateNestedOneWithoutCountryInput No

CountryUncheckedCreateInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
version String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Contact ContactUncheckedCreateNestedManyWithoutCountryInput No

CountryUpdateInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Contact ContactUpdateManyWithoutCountryNestedInput No
Version VersionUpdateOneRequiredWithoutCountryNestedInput No

CountryUncheckedUpdateInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Contact ContactUncheckedUpdateManyWithoutCountryNestedInput No

CountryCreateManyInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
version String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes

CountryUpdateManyMutationInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

CountryUncheckedUpdateManyInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DeviceCreateInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
Version VersionCreateNestedOneWithoutDeviceInput No
LoginRecord LoginRecordCreateNestedManyWithoutDeviceInput No

DeviceUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
version String No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutDeviceInput No

DeviceUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
Version VersionUpdateOneRequiredWithoutDeviceNestedInput No
LoginRecord LoginRecordUpdateManyWithoutDeviceNestedInput No

DeviceUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutDeviceNestedInput No

DeviceCreateManyInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
version String No

DeviceUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes

DeviceUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

DonationCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
Contact ContactCreateNestedManyWithoutDonationInput No
Member MemberCreateNestedOneWithoutDonationInput No
Organization OrganizationCreateNestedOneWithoutDonationInput No
Person PersonCreateNestedOneWithoutDonationInput No
Version VersionCreateNestedOneWithoutDonationInput No

DonationUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No
organization Int No
Contact ContactUncheckedCreateNestedManyWithoutDonationInput No


DonationUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
Contact ContactUncheckedUpdateManyWithoutDonationNestedInput No

DonationCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No
organization Int No

DonationUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No

DonationUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No

HospitalCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No
Contact_Hospital_contactToContact ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput No
Location LocationCreateNestedOneWithoutHospitalInput No
Version VersionCreateNestedOneWithoutHospitalInput No

HospitalUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
location Int | Null Yes
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No

HospitalUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No
Contact_Hospital_contactToContact ContactUpdateOneWithoutHospital_Hospital_contactToContactNestedInput No
Location LocationUpdateOneWithoutHospitalNestedInput No
Version VersionUpdateOneRequiredWithoutHospitalNestedInput No

HospitalUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No

HospitalCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
location Int | Null Yes
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes

HospitalUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes

HospitalUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes

LocationCreateInput

Name Type Nullable
latitude Float No
longitude Float No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Hospital HospitalCreateNestedManyWithoutLocationInput No
Version VersionCreateNestedOneWithoutLocationInput No

LocationUncheckedCreateInput

Name Type Nullable
id Int No
latitude Float No
longitude Float No
version String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Hospital HospitalUncheckedCreateNestedManyWithoutLocationInput No

LocationUpdateInput

Name Type Nullable
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Hospital HospitalUpdateManyWithoutLocationNestedInput No
Version VersionUpdateOneRequiredWithoutLocationNestedInput No

LocationUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Hospital HospitalUncheckedUpdateManyWithoutLocationNestedInput No

LocationCreateManyInput

Name Type Nullable
id Int No
latitude Float No
longitude Float No
version String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes

LocationUpdateManyMutationInput

Name Type Nullable
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

LocationUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

LoginRecordCreateInput

Name Type Nullable
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
Device DeviceCreateNestedOneWithoutLoginRecordInput No
Version VersionCreateNestedOneWithoutLoginRecordInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutLoginRecordInput No
User UserCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsCreateNestedManyWithoutLoginRecordInput No

LoginRecordUncheckedCreateInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No
User UserUncheckedCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No

LoginRecordUpdateInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Device DeviceUpdateOneWithoutLoginRecordNestedInput No
Version VersionUpdateOneRequiredWithoutLoginRecordNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutLoginRecordNestedInput No
User UserUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No
User UserUncheckedUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No

LoginRecordCreateManyInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes

LoginRecordUpdateManyMutationInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

LoginRecordUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes

MemberCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Donation DonationCreateNestedManyWithoutMemberInput No
Club ClubCreateNestedOneWithoutMemberInput No
Person PersonCreateNestedOneWithoutMemberInput No
Version VersionCreateNestedOneWithoutMemberInput No
Request RequestCreateNestedManyWithoutMemberInput No

MemberUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes
Donation DonationUncheckedCreateNestedManyWithoutMemberInput No
Request RequestUncheckedCreateNestedManyWithoutMemberInput No

MemberUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Donation DonationUpdateManyWithoutMemberNestedInput No
Club ClubUpdateOneWithoutMemberNestedInput No
Person PersonUpdateOneWithoutMemberNestedInput No
Version VersionUpdateOneRequiredWithoutMemberNestedInput No
Request RequestUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
Donation DonationUncheckedUpdateManyWithoutMemberNestedInput No
Request RequestUncheckedUpdateManyWithoutMemberNestedInput No

MemberCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes

MemberUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes

MemberUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes


OrganizationUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No

OrganizationCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No

OrganizationUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No

OrganizationUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

OrganizationSettingsCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
Organization OrganizationCreateNestedManyWithoutOrganizationSettingsInput No
LoginRecord LoginRecordCreateNestedOneWithoutOrganizationSettingsInput No
Version VersionCreateNestedOneWithoutOrganizationSettingsInput No

OrganizationSettingsUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
loginRecordId Int | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
version String No
Organization OrganizationUncheckedCreateNestedManyWithoutOrganizationSettingsInput No

OrganizationSettingsUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUpdateManyWithoutOrganizationSettingsNestedInput No
LoginRecord LoginRecordUpdateOneWithoutOrganizationSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationSettingsNestedInput No

OrganizationSettingsUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
loginRecordId Int | NullableIntFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Organization OrganizationUncheckedUpdateManyWithoutOrganizationSettingsNestedInput No

OrganizationSettingsCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
loginRecordId Int | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
version String No

OrganizationSettingsUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes

OrganizationSettingsUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
loginRecordId Int | NullableIntFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

PersonCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No

PersonCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes

PersonUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes

PersonUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes

RequestCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
Member MemberCreateNestedOneWithoutRequestInput No
Person PersonCreateNestedOneWithoutRequestInput No
Version VersionCreateNestedOneWithoutRequestInput No

RequestUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
memberId Int | Null Yes
personId Int No

RequestUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
Member MemberUpdateOneWithoutRequestNestedInput No
Person PersonUpdateOneRequiredWithoutRequestNestedInput No
Version VersionUpdateOneRequiredWithoutRequestNestedInput No

RequestUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
memberId Int | NullableIntFieldUpdateOperationsInput | Null Yes
personId Int | IntFieldUpdateOperationsInput No

RequestCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
memberId Int | Null Yes
personId Int No

RequestUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No

RequestUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
memberId Int | NullableIntFieldUpdateOperationsInput | Null Yes
personId Int | IntFieldUpdateOperationsInput No

SecurityQuestionCreateInput

Name Type Nullable
question String No
answer String No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedOneWithoutSecurityQuestionInput No
Version VersionCreateNestedOneWithoutSecurityQuestionInput No
UserSettings UserSettingsCreateNestedManyWithoutSecurityQuestionInput No

SecurityQuestionUncheckedCreateInput

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutSecurityQuestionInput No


SecurityQuestionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput No

SecurityQuestionCreateManyInput

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SecurityQuestionUpdateManyMutationInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

SecurityQuestionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

SocialMediaLinksCreateInput

Name Type Nullable
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutSocialMediaLinksInput No
User UserCreateNestedManyWithoutSocialMediaLinksInput No

SocialMediaLinksUncheckedCreateInput

Name Type Nullable
id Int No
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
version String No
User UserUncheckedCreateNestedManyWithoutSocialMediaLinksInput No

SocialMediaLinksUpdateInput

Name Type Nullable
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutSocialMediaLinksNestedInput No
User UserUpdateManyWithoutSocialMediaLinksNestedInput No

SocialMediaLinksUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
User UserUncheckedUpdateManyWithoutSocialMediaLinksNestedInput No

SocialMediaLinksCreateManyInput

Name Type Nullable
id Int No
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SocialMediaLinksUpdateManyMutationInput

Name Type Nullable
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

SocialMediaLinksUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

SupportCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
Organization OrganizationCreateNestedOneWithoutSupportInput No
Version VersionCreateNestedOneWithoutSupportInput No
SupportMessage SupportMessageCreateNestedManyWithoutSupportInput No

SupportUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
organization Int No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutSupportInput No


SupportUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
SupportMessage SupportMessageUncheckedUpdateManyWithoutSupportNestedInput No

SupportCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
organization Int No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes

SupportUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes

SupportUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes

SupportMessageCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
message String No
Person PersonCreateNestedOneWithoutSupportMessageInput No
Organization OrganizationCreateNestedOneWithoutSupportMessageInput No
Support SupportCreateNestedOneWithoutSupportMessageInput No
Version VersionCreateNestedOneWithoutSupportMessageInput No

SupportMessageUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
author Int No
version String No


SupportMessageUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

SupportMessageCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
author Int No
version String No

SupportMessageUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No

SupportMessageUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

TeamCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
status String No
Person_Person_teamIdToTeam PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No
Person_Team_membersToPerson PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput No
Organization OrganizationCreateNestedOneWithoutTeamInput No
Version VersionCreateNestedOneWithoutTeamInput No

TeamUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
members Int No
status String No
Person_Person_teamIdToTeam PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No


TeamUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No

TeamCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
members Int No
status String No

TeamUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No

TeamUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No

TwoFactorAuthCreateInput

Name Type Nullable
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutTwoFactorAuthInput No
User UserCreateNestedManyWithoutTwoFactorAuthInput No

TwoFactorAuthUncheckedCreateInput

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No
User UserUncheckedCreateNestedManyWithoutTwoFactorAuthInput No

TwoFactorAuthUpdateInput

Name Type Nullable
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutTwoFactorAuthNestedInput No
User UserUpdateManyWithoutTwoFactorAuthNestedInput No

TwoFactorAuthUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
User UserUncheckedUpdateManyWithoutTwoFactorAuthNestedInput No

TwoFactorAuthCreateManyInput

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

TwoFactorAuthUpdateManyMutationInput

Name Type Nullable
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

TwoFactorAuthUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

UserCreateInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserUpdateInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserCreateManyInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

UserUpdateManyMutationInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserRoleCreateInput

Name Type Nullable
name String No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedOneWithoutUserRoleInput No
Version VersionCreateNestedOneWithoutUserRoleInput No

UserRoleUncheckedCreateInput

Name Type Nullable
id Int No
name String No
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No


UserRoleUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

UserRoleCreateManyInput

Name Type Nullable
id Int No
name String No
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

UserRoleUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserRoleUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

UserSettingsCreateInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
User UserCreateNestedManyWithoutUserSettingsInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserSettingsInput No
SecurityQuestion SecurityQuestionCreateNestedOneWithoutUserSettingsInput No
Version VersionCreateNestedOneWithoutUserSettingsInput No

UserSettingsUncheckedCreateInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No
security_question Int | Null Yes
User UserUncheckedCreateNestedManyWithoutUserSettingsInput No

UserSettingsUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
User UserUpdateManyWithoutUserSettingsNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserSettingsNestedInput No
SecurityQuestion SecurityQuestionUpdateOneWithoutUserSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes
User UserUncheckedUpdateManyWithoutUserSettingsNestedInput No

UserSettingsCreateManyInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No
security_question Int | Null Yes

UserSettingsUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

UserSettingsUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes

VersionCreateInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

VersionCreateManyInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes

VersionUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes

VersionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

BigIntNullableFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput | Null Yes
in BigInt[] | ListBigIntFieldRefInput | Null Yes
notIn BigInt[] | ListBigIntFieldRefInput | Null Yes
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntNullableFilter | Null Yes

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringFilter No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

AccountCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountAvgOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

AccountMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountSumOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No


StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

StringNullableListFilter

Name Type Nullable
equals String | ListStringFieldRefInput | Null Yes
has String | StringFieldRefInput | Null Yes
hasEvery String | ListStringFieldRefInput No
hasSome String | ListStringFieldRefInput No
isEmpty Boolean No

ContactNullableRelationFilter

Name Type Nullable
is ContactWhereInput | Null Yes
isNot ContactWhereInput | Null Yes

OrganizationNullableRelationFilter

Name Type Nullable
is OrganizationWhereInput | Null Yes
isNot OrganizationWhereInput | Null Yes

PersonRelationFilter

Name Type Nullable
is PersonWhereInput No
isNot PersonWhereInput No

VersionRelationFilter

Name Type Nullable
is VersionWhereInput No
isNot VersionWhereInput No

AmbulanceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
vehicle_number SortOrder No
ambulance_type SortOrder No
person SortOrder No
version SortOrder No
organization SortOrder No
equipment SortOrder No
contact SortOrder No
color SortOrder No

AmbulanceAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
person SortOrder No
organization SortOrder No
contact SortOrder No

AmbulanceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
vehicle_number SortOrder No
ambulance_type SortOrder No
person SortOrder No
version SortOrder No
organization SortOrder No
contact SortOrder No
color SortOrder No

AmbulanceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
vehicle_number SortOrder No
ambulance_type SortOrder No
person SortOrder No
version SortOrder No
organization SortOrder No
contact SortOrder No
color SortOrder No

AmbulanceSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
person SortOrder No
organization SortOrder No
contact SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

BloodDonationListRelationFilter

Name Type Nullable
every BloodDonationWhereInput No
some BloodDonationWhereInput No
none BloodDonationWhereInput No

ContactListRelationFilter

Name Type Nullable
every ContactWhereInput No
some ContactWhereInput No
none ContactWhereInput No

BloodDonationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ContactOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BloodCenterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
established_at SortOrder No
version SortOrder No
founder SortOrder No
contact SortOrder No
title SortOrder No

BloodCenterAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
founder SortOrder No
contact SortOrder No

BloodCenterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
established_at SortOrder No
version SortOrder No
founder SortOrder No
contact SortOrder No
title SortOrder No

BloodCenterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
established_at SortOrder No
version SortOrder No
founder SortOrder No
contact SortOrder No
title SortOrder No

BloodCenterSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
founder SortOrder No
contact SortOrder No

JsonNullableFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

BloodCenterRelationFilter

Name Type Nullable
is BloodCenterWhereInput No
isNot BloodCenterWhereInput No

BloodDonationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No
version SortOrder No
donated_at SortOrder No
referred_by SortOrder No
test_done SortOrder No
bags SortOrder No
media_done SortOrder No
media_used SortOrder No
incubation SortOrder No
note SortOrder No
created_at SortOrder No
updated_at SortOrder No
cabin_no SortOrder No
reg_no SortOrder No

BloodDonationAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No

BloodDonationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No
version SortOrder No
donated_at SortOrder No
referred_by SortOrder No
media_done SortOrder No
media_used SortOrder No
incubation SortOrder No
note SortOrder No
created_at SortOrder No
updated_at SortOrder No
cabin_no SortOrder No
reg_no SortOrder No

BloodDonationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No
version SortOrder No
donated_at SortOrder No
referred_by SortOrder No
media_done SortOrder No
media_used SortOrder No
incubation SortOrder No
note SortOrder No
created_at SortOrder No
updated_at SortOrder No
cabin_no SortOrder No
reg_no SortOrder No

BloodDonationSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
donor_id SortOrder No
organization_id SortOrder No
amount SortOrder No

JsonNullableWithAggregatesFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No
_count NestedIntNullableFilter No
_min NestedJsonNullableFilter No
_max NestedJsonNullableFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

ContactRelationFilter

Name Type Nullable
is ContactWhereInput No
isNot ContactWhereInput No

MemberListRelationFilter

Name Type Nullable
every MemberWhereInput No
some MemberWhereInput No
none MemberWhereInput No

OrganizationListRelationFilter

Name Type Nullable
every OrganizationWhereInput No
some OrganizationWhereInput No
none OrganizationWhereInput No

MemberOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

OrganizationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ClubCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
established_at SortOrder No
contact SortOrder No
version SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No

ClubAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
contact SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No

ClubMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
established_at SortOrder No
contact SortOrder No
version SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No

ClubMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
established_at SortOrder No
contact SortOrder No
version SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No

ClubSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
contact SortOrder No
chairman SortOrder No
founder SortOrder No
vice_chairman SortOrder No

AmbulanceListRelationFilter

Name Type Nullable
every AmbulanceWhereInput No
some AmbulanceWhereInput No
none AmbulanceWhereInput No

BloodCenterListRelationFilter

Name Type Nullable
every BloodCenterWhereInput No
some BloodCenterWhereInput No
none BloodCenterWhereInput No

ClubListRelationFilter

Name Type Nullable
every ClubWhereInput No
some ClubWhereInput No
none ClubWhereInput No

BloodCenterNullableRelationFilter

Name Type Nullable
is BloodCenterWhereInput | Null Yes
isNot BloodCenterWhereInput | Null Yes

ClubNullableRelationFilter

Name Type Nullable
is ClubWhereInput | Null Yes
isNot ClubWhereInput | Null Yes

CountryNullableRelationFilter

Name Type Nullable
is CountryWhereInput | Null Yes
isNot CountryWhereInput | Null Yes

DonationNullableRelationFilter

Name Type Nullable
is DonationWhereInput | Null Yes
isNot DonationWhereInput | Null Yes

HospitalNullableRelationFilter

Name Type Nullable
is HospitalWhereInput | Null Yes
isNot HospitalWhereInput | Null Yes

PersonNullableRelationFilter

Name Type Nullable
is PersonWhereInput | Null Yes
isNot PersonWhereInput | Null Yes

HospitalListRelationFilter

Name Type Nullable
every HospitalWhereInput No
some HospitalWhereInput No
none HospitalWhereInput No

PersonListRelationFilter

Name Type Nullable
every PersonWhereInput No
some PersonWhereInput No
none PersonWhereInput No

AmbulanceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BloodCenterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ClubOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

HospitalOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PersonOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ContactCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
address_line SortOrder No
address_line_1 SortOrder No
state SortOrder No
city SortOrder No
zip SortOrder No
phone SortOrder No
phone_1 SortOrder No
fax SortOrder No
email SortOrder No
email_1 SortOrder No
website SortOrder No
social_media SortOrder No
version SortOrder No
country SortOrder No
person SortOrder No
club SortOrder No
blood_center SortOrder No
donation SortOrder No
hospital SortOrder No

ContactAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
person SortOrder No
club SortOrder No
blood_center SortOrder No
donation SortOrder No
hospital SortOrder No

ContactMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
address_line SortOrder No
address_line_1 SortOrder No
state SortOrder No
city SortOrder No
zip SortOrder No
phone SortOrder No
phone_1 SortOrder No
fax SortOrder No
email SortOrder No
email_1 SortOrder No
website SortOrder No
version SortOrder No
country SortOrder No
person SortOrder No
club SortOrder No
blood_center SortOrder No
donation SortOrder No
hospital SortOrder No

ContactMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
address_line SortOrder No
address_line_1 SortOrder No
state SortOrder No
city SortOrder No
zip SortOrder No
phone SortOrder No
phone_1 SortOrder No
fax SortOrder No
email SortOrder No
email_1 SortOrder No
website SortOrder No
version SortOrder No
country SortOrder No
person SortOrder No
club SortOrder No
blood_center SortOrder No
donation SortOrder No
hospital SortOrder No

ContactSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
person SortOrder No
club SortOrder No
blood_center SortOrder No
donation SortOrder No
hospital SortOrder No

CountryAlpha_3Alpha_2NumericNameCompoundUniqueInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No

CountryCountOrderByAggregateInput

Name Type Nullable
alpha_3 SortOrder No
alpha_2 SortOrder No
numeric SortOrder No
name SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

CountryMaxOrderByAggregateInput

Name Type Nullable
alpha_3 SortOrder No
alpha_2 SortOrder No
numeric SortOrder No
name SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

CountryMinOrderByAggregateInput

Name Type Nullable
alpha_3 SortOrder No
alpha_2 SortOrder No
numeric SortOrder No
name SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

LoginRecordListRelationFilter

Name Type Nullable
every LoginRecordWhereInput No
some LoginRecordWhereInput No
none LoginRecordWhereInput No

LoginRecordOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

DeviceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
mac_address SortOrder No
model SortOrder No
os SortOrder No
os_version SortOrder No
device_id SortOrder No
brand SortOrder No
manufacturer SortOrder No
version SortOrder No

DeviceAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

DeviceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
mac_address SortOrder No
model SortOrder No
os SortOrder No
os_version SortOrder No
device_id SortOrder No
brand SortOrder No
manufacturer SortOrder No
version SortOrder No

DeviceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
mac_address SortOrder No
model SortOrder No
os SortOrder No
os_version SortOrder No
device_id SortOrder No
brand SortOrder No
manufacturer SortOrder No
version SortOrder No

DeviceSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

MemberRelationFilter

Name Type Nullable
is MemberWhereInput No
isNot MemberWhereInput No

OrganizationRelationFilter

Name Type Nullable
is OrganizationWhereInput No
isNot OrganizationWhereInput No

DonationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
amount SortOrder No
donated_at SortOrder No
version SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No

DonationAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
amount SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No

DonationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
amount SortOrder No
donated_at SortOrder No
version SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No

DonationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
amount SortOrder No
donated_at SortOrder No
version SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No

DonationSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
amount SortOrder No
person SortOrder No
member SortOrder No
organization SortOrder No

BoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

FloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

EnumFacilityTypeNullableFilter

Name Type Nullable
equals FacilityType | EnumFacilityTypeFieldRefInput | Null Yes
in FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null Yes
notIn FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null Yes
not FacilityType | NestedEnumFacilityTypeNullableFilter | Null Yes

LocationNullableRelationFilter

Name Type Nullable
is LocationWhereInput | Null Yes
isNot LocationWhereInput | Null Yes

HospitalCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
founded_at SortOrder No
accreditation SortOrder No
bed_count SortOrder No
emergency_room SortOrder No
services SortOrder No
specialties SortOrder No
rating SortOrder No
facility_type SortOrder No
ownership SortOrder No
insurance_accepted SortOrder No
operating_hours SortOrder No
infrastructure SortOrder No
security_controls SortOrder No
version SortOrder No
location SortOrder No
contact SortOrder No
founder SortOrder No
director SortOrder No
chairman SortOrder No

HospitalAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
bed_count SortOrder No
rating SortOrder No
location SortOrder No
contact SortOrder No
founder SortOrder No
director SortOrder No
chairman SortOrder No

HospitalMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
founded_at SortOrder No
accreditation SortOrder No
bed_count SortOrder No
emergency_room SortOrder No
rating SortOrder No
facility_type SortOrder No
ownership SortOrder No
insurance_accepted SortOrder No
operating_hours SortOrder No
infrastructure SortOrder No
security_controls SortOrder No
version SortOrder No
location SortOrder No
contact SortOrder No
founder SortOrder No
director SortOrder No
chairman SortOrder No

HospitalMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
name SortOrder No
founded_at SortOrder No
accreditation SortOrder No
bed_count SortOrder No
emergency_room SortOrder No
rating SortOrder No
facility_type SortOrder No
ownership SortOrder No
insurance_accepted SortOrder No
operating_hours SortOrder No
infrastructure SortOrder No
security_controls SortOrder No
version SortOrder No
location SortOrder No
contact SortOrder No
founder SortOrder No
director SortOrder No
chairman SortOrder No

HospitalSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
bed_count SortOrder No
rating SortOrder No
location SortOrder No
contact SortOrder No
founder SortOrder No
director SortOrder No
chairman SortOrder No

BoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

FloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No


FloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

LocationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

LocationAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No

LocationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

LocationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

LocationSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
latitude SortOrder No
longitude SortOrder No

FloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No


DeviceNullableRelationFilter

Name Type Nullable
is DeviceWhereInput | Null Yes
isNot DeviceWhereInput | Null Yes

OrganizationSettingsListRelationFilter

Name Type Nullable
every OrganizationSettingsWhereInput No
some OrganizationSettingsWhereInput No
none OrganizationSettingsWhereInput No

UserListRelationFilter

Name Type Nullable
every UserWhereInput No
some UserWhereInput No
none UserWhereInput No

UserSettingsListRelationFilter

Name Type Nullable
every UserSettingsWhereInput No
some UserSettingsWhereInput No
none UserSettingsWhereInput No

OrganizationSettingsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserSettingsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LoginRecordCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
user SortOrder No
ip_address SortOrder No
user_agent SortOrder No
login_status SortOrder No
session_id SortOrder No
location SortOrder No
authentication SortOrder No
security_tokens SortOrder No
logout_timestamp SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
devices SortOrder No

LoginRecordAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user SortOrder No
devices SortOrder No

LoginRecordMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
user SortOrder No
ip_address SortOrder No
user_agent SortOrder No
login_status SortOrder No
session_id SortOrder No
location SortOrder No
authentication SortOrder No
security_tokens SortOrder No
logout_timestamp SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
devices SortOrder No

LoginRecordMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
user SortOrder No
ip_address SortOrder No
user_agent SortOrder No
login_status SortOrder No
session_id SortOrder No
location SortOrder No
authentication SortOrder No
security_tokens SortOrder No
logout_timestamp SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No
devices SortOrder No

LoginRecordSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user SortOrder No
devices SortOrder No


DonationListRelationFilter

Name Type Nullable
every DonationWhereInput No
some DonationWhereInput No
none DonationWhereInput No

RequestListRelationFilter

Name Type Nullable
every RequestWhereInput No
some RequestWhereInput No
none RequestWhereInput No

DonationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RequestOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

MemberCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
allergies SortOrder No
complications SortOrder No
medications SortOrder No
blood_disorders SortOrder No
club_id SortOrder No
infectious_diseases SortOrder No
last_blood_donation SortOrder No
medical_conditions SortOrder No
person_id SortOrder No

MemberAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
club_id SortOrder No
person_id SortOrder No

MemberMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
allergies SortOrder No
complications SortOrder No
medications SortOrder No
blood_disorders SortOrder No
club_id SortOrder No
infectious_diseases SortOrder No
last_blood_donation SortOrder No
medical_conditions SortOrder No
person_id SortOrder No

MemberMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
allergies SortOrder No
complications SortOrder No
medications SortOrder No
blood_disorders SortOrder No
club_id SortOrder No
infectious_diseases SortOrder No
last_blood_donation SortOrder No
medical_conditions SortOrder No
person_id SortOrder No

MemberSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
club_id SortOrder No
person_id SortOrder No


JsonFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

OrganizationSettingsRelationFilter

Name Type Nullable
is OrganizationSettingsWhereInput No
isNot OrganizationSettingsWhereInput No

SupportListRelationFilter

Name Type Nullable
every SupportWhereInput No
some SupportWhereInput No
none SupportWhereInput No

SupportMessageListRelationFilter

Name Type Nullable
every SupportMessageWhereInput No
some SupportMessageWhereInput No
none SupportMessageWhereInput No

TeamListRelationFilter

Name Type Nullable
every TeamWhereInput No
some TeamWhereInput No
none TeamWhereInput No

SupportOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SupportMessageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TeamOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

OrganizationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
org_type SortOrder No
org_id SortOrder No
Volunteer SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder No
version SortOrder No

OrganizationAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
org_id SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder No

OrganizationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
org_type SortOrder No
org_id SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder No
version SortOrder No

OrganizationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
org_type SortOrder No
org_id SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder No
version SortOrder No

OrganizationSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
org_id SortOrder No
personId SortOrder No
organizationSettingsId SortOrder No
clubId SortOrder No


JsonWithAggregatesFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No





EnumThemeNullableFilter

Name Type Nullable
equals Theme | EnumThemeFieldRefInput | Null Yes
in Theme[] | ListEnumThemeFieldRefInput | Null Yes
notIn Theme[] | ListEnumThemeFieldRefInput | Null Yes
not Theme | NestedEnumThemeNullableFilter | Null Yes

BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

LoginRecordNullableRelationFilter

Name Type Nullable
is LoginRecordWhereInput | Null Yes
isNot LoginRecordWhereInput | Null Yes

OrganizationSettingsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder No
loginRecordId SortOrder No
accountDeactivation SortOrder No
avatar SortOrder No
clearBrowsingData SortOrder No
contactSupportLink SortOrder No
dataRetentionDays SortOrder No
dataSharing SortOrder No
helpCenterLink SortOrder No
high_contrast_mode SortOrder No
in_app_notifications SortOrder No
key_board_shortcut SortOrder No
notification_frequency SortOrder No
notification_sound SortOrder No
notification_vibrate SortOrder No
password_reset SortOrder No
security_answer SortOrder No
security_question SortOrder No
username SortOrder No
version SortOrder No

OrganizationSettingsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
loginRecordId SortOrder No
dataRetentionDays SortOrder No

OrganizationSettingsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder No
loginRecordId SortOrder No
accountDeactivation SortOrder No
avatar SortOrder No
clearBrowsingData SortOrder No
contactSupportLink SortOrder No
dataRetentionDays SortOrder No
dataSharing SortOrder No
helpCenterLink SortOrder No
high_contrast_mode SortOrder No
in_app_notifications SortOrder No
key_board_shortcut SortOrder No
notification_frequency SortOrder No
notification_sound SortOrder No
notification_vibrate SortOrder No
password_reset SortOrder No
security_answer SortOrder No
security_question SortOrder No
username SortOrder No
version SortOrder No

OrganizationSettingsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder No
loginRecordId SortOrder No
accountDeactivation SortOrder No
avatar SortOrder No
clearBrowsingData SortOrder No
contactSupportLink SortOrder No
dataRetentionDays SortOrder No
dataSharing SortOrder No
helpCenterLink SortOrder No
high_contrast_mode SortOrder No
in_app_notifications SortOrder No
key_board_shortcut SortOrder No
notification_frequency SortOrder No
notification_sound SortOrder No
notification_vibrate SortOrder No
password_reset SortOrder No
security_answer SortOrder No
security_question SortOrder No
username SortOrder No
version SortOrder No

OrganizationSettingsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
loginRecordId SortOrder No
dataRetentionDays SortOrder No





EnumThemeNullableWithAggregatesFilter

Name Type Nullable
equals Theme | EnumThemeFieldRefInput | Null Yes
in Theme[] | ListEnumThemeFieldRefInput | Null Yes
notIn Theme[] | ListEnumThemeFieldRefInput | Null Yes
not Theme | NestedEnumThemeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumThemeNullableFilter No
_max NestedEnumThemeNullableFilter No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

EnumGenderNullableFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput | Null Yes
in Gender[] | ListEnumGenderFieldRefInput | Null Yes
notIn Gender[] | ListEnumGenderFieldRefInput | Null Yes
not Gender | NestedEnumGenderNullableFilter | Null Yes

TeamNullableRelationFilter

Name Type Nullable
is TeamWhereInput | Null Yes
isNot TeamWhereInput | Null Yes

PersonCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
first_name SortOrder No
last_name SortOrder No
father_name SortOrder No
mother_name SortOrder No
profession SortOrder No
dob SortOrder No
gender SortOrder No
version SortOrder No
avatar SortOrder No
contact_id SortOrder No
teamId SortOrder No
bid SortOrder No
driving SortOrder No
nid SortOrder No
passport SortOrder No

PersonAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
contact_id SortOrder No
teamId SortOrder No

PersonMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
first_name SortOrder No
last_name SortOrder No
father_name SortOrder No
mother_name SortOrder No
profession SortOrder No
dob SortOrder No
gender SortOrder No
version SortOrder No
avatar SortOrder No
contact_id SortOrder No
teamId SortOrder No
bid SortOrder No
driving SortOrder No
nid SortOrder No
passport SortOrder No

PersonMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
first_name SortOrder No
last_name SortOrder No
father_name SortOrder No
mother_name SortOrder No
profession SortOrder No
dob SortOrder No
gender SortOrder No
version SortOrder No
avatar SortOrder No
contact_id SortOrder No
teamId SortOrder No
bid SortOrder No
driving SortOrder No
nid SortOrder No
passport SortOrder No

PersonSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
contact_id SortOrder No
teamId SortOrder No

EnumGenderNullableWithAggregatesFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput | Null Yes
in Gender[] | ListEnumGenderFieldRefInput | Null Yes
notIn Gender[] | ListEnumGenderFieldRefInput | Null Yes
not Gender | NestedEnumGenderNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumGenderNullableFilter No
_max NestedEnumGenderNullableFilter No


MemberNullableRelationFilter

Name Type Nullable
is MemberWhereInput | Null Yes
isNot MemberWhereInput | Null Yes

RequestCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
health_issue SortOrder No
blood_group SortOrder No
quantity SortOrder No
donation_type SortOrder No
datetime SortOrder No
hospital_name SortOrder No
hospital_address SortOrder No
hospital_phone SortOrder No
hospital_email SortOrder No
version SortOrder No
memberId SortOrder No
personId SortOrder No

RequestAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
quantity SortOrder No
memberId SortOrder No
personId SortOrder No

RequestMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
health_issue SortOrder No
blood_group SortOrder No
quantity SortOrder No
donation_type SortOrder No
datetime SortOrder No
hospital_name SortOrder No
hospital_address SortOrder No
hospital_phone SortOrder No
hospital_email SortOrder No
version SortOrder No
memberId SortOrder No
personId SortOrder No

RequestMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
health_issue SortOrder No
blood_group SortOrder No
quantity SortOrder No
donation_type SortOrder No
datetime SortOrder No
hospital_name SortOrder No
hospital_address SortOrder No
hospital_phone SortOrder No
hospital_email SortOrder No
version SortOrder No
memberId SortOrder No
personId SortOrder No

RequestSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
quantity SortOrder No
memberId SortOrder No
personId SortOrder No


UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

SecurityQuestionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
question SortOrder No
answer SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

SecurityQuestionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No

SecurityQuestionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
question SortOrder No
answer SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

SecurityQuestionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
question SortOrder No
answer SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

SecurityQuestionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No

SocialMediaLinksCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
facebook SortOrder No
twitter SortOrder No
instagram SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

SocialMediaLinksAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No

SocialMediaLinksMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
facebook SortOrder No
twitter SortOrder No
instagram SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

SocialMediaLinksMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
facebook SortOrder No
twitter SortOrder No
instagram SortOrder No
userId SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

SocialMediaLinksSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No

SupportCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
organization SortOrder No
messages SortOrder No
status SortOrder No
priority SortOrder No
subject SortOrder No

SupportAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
organization SortOrder No
priority SortOrder No

SupportMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
organization SortOrder No
messages SortOrder No
status SortOrder No
priority SortOrder No
subject SortOrder No

SupportMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No
organization SortOrder No
messages SortOrder No
status SortOrder No
priority SortOrder No
subject SortOrder No

SupportSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
organization SortOrder No
priority SortOrder No

SupportRelationFilter

Name Type Nullable
is SupportWhereInput No
isNot SupportWhereInput No

SupportMessageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
organization SortOrder No
support SortOrder No
message SortOrder No
author SortOrder No
version SortOrder No

SupportMessageAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
organization SortOrder No
support SortOrder No
author SortOrder No

SupportMessageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
organization SortOrder No
support SortOrder No
message SortOrder No
author SortOrder No
version SortOrder No

SupportMessageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
organization SortOrder No
support SortOrder No
message SortOrder No
author SortOrder No
version SortOrder No

SupportMessageSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
organization SortOrder No
support SortOrder No
author SortOrder No

TeamCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
started_at SortOrder No
ended_at SortOrder No
organization SortOrder No
version SortOrder No
members SortOrder No
status SortOrder No

TeamAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
organization SortOrder No
members SortOrder No

TeamMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
started_at SortOrder No
ended_at SortOrder No
organization SortOrder No
version SortOrder No
members SortOrder No
status SortOrder No

TeamMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
started_at SortOrder No
ended_at SortOrder No
organization SortOrder No
version SortOrder No
members SortOrder No
status SortOrder No

TeamSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
organization SortOrder No
members SortOrder No

TwoFactorAuthCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
is_enabled SortOrder No
secret_key SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

TwoFactorAuthAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No

TwoFactorAuthMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
is_enabled SortOrder No
secret_key SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

TwoFactorAuthMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
is_enabled SortOrder No
secret_key SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

TwoFactorAuthSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No


SecurityQuestionListRelationFilter

Name Type Nullable
every SecurityQuestionWhereInput No
some SecurityQuestionWhereInput No
none SecurityQuestionWhereInput No

LoginRecordRelationFilter

Name Type Nullable
is LoginRecordWhereInput No
isNot LoginRecordWhereInput No

SocialMediaLinksRelationFilter

Name Type Nullable
is SocialMediaLinksWhereInput No
isNot SocialMediaLinksWhereInput No

TwoFactorAuthRelationFilter

Name Type Nullable
is TwoFactorAuthWhereInput No
isNot TwoFactorAuthWhereInput No

UserSettingsRelationFilter

Name Type Nullable
is UserSettingsWhereInput No
isNot UserSettingsWhereInput No

UserRoleListRelationFilter

Name Type Nullable
every UserRoleWhereInput No
some UserRoleWhereInput No
none UserRoleWhereInput No

SecurityQuestionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserRoleOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
username SortOrder No
email SortOrder No
password SortOrder No
status SortOrder No
ip SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

UserAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
username SortOrder No
email SortOrder No
password SortOrder No
status SortOrder No
ip SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
username SortOrder No
email SortOrder No
password SortOrder No
status SortOrder No
ip SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No
version SortOrder No
created_at SortOrder No
updated_at SortOrder No

UserSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
two_factor_auth SortOrder No
social_login SortOrder No
logins SortOrder No
person SortOrder No
settings SortOrder No


UserRoleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

UserRoleAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No

UserRoleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

UserRoleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

UserRoleSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No

SecurityQuestionNullableRelationFilter

Name Type Nullable
is SecurityQuestionWhereInput | Null Yes
isNot SecurityQuestionWhereInput | Null Yes

UserSettingsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder No
login_record_id SortOrder No
high_contrast_mode SortOrder No
in_app_notifications SortOrder No
key_board_shortcut SortOrder No
notification_frequency SortOrder No
notification_sound SortOrder No
notification_vibrate SortOrder No
password_reset SortOrder No
version SortOrder No
security_question SortOrder No

UserSettingsAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
login_record_id SortOrder No
security_question SortOrder No

UserSettingsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder No
login_record_id SortOrder No
high_contrast_mode SortOrder No
in_app_notifications SortOrder No
key_board_shortcut SortOrder No
notification_frequency SortOrder No
notification_sound SortOrder No
notification_vibrate SortOrder No
password_reset SortOrder No
version SortOrder No
security_question SortOrder No

UserSettingsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
updated_at SortOrder No
language SortOrder No
time_format SortOrder No
date_format SortOrder No
timezone SortOrder No
theme SortOrder No
email_notifications SortOrder No
phone_notification SortOrder No
push_notifications SortOrder No
two_factor_auth SortOrder No
login_record_id SortOrder No
high_contrast_mode SortOrder No
in_app_notifications SortOrder No
key_board_shortcut SortOrder No
notification_frequency SortOrder No
notification_sound SortOrder No
notification_vibrate SortOrder No
password_reset SortOrder No
version SortOrder No
security_question SortOrder No

UserSettingsSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
login_record_id SortOrder No
security_question SortOrder No

CountryListRelationFilter

Name Type Nullable
every CountryWhereInput No
some CountryWhereInput No
none CountryWhereInput No

DeviceListRelationFilter

Name Type Nullable
every DeviceWhereInput No
some DeviceWhereInput No
none DeviceWhereInput No

LocationListRelationFilter

Name Type Nullable
every LocationWhereInput No
some LocationWhereInput No
none LocationWhereInput No

SocialMediaLinksListRelationFilter

Name Type Nullable
every SocialMediaLinksWhereInput No
some SocialMediaLinksWhereInput No
none SocialMediaLinksWhereInput No

TwoFactorAuthListRelationFilter

Name Type Nullable
every TwoFactorAuthWhereInput No
some TwoFactorAuthWhereInput No
none TwoFactorAuthWhereInput No

CountryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

DeviceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LocationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SocialMediaLinksOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TwoFactorAuthOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

VersionIdSlugCompoundUniqueInput

Name Type Nullable
id Int No
slug String No

VersionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
slug SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

VersionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

VersionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
slug SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

VersionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
slug SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No
version SortOrder No

VersionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

NullableBigIntFieldUpdateOperationsInput

Name Type Nullable
set BigInt | Null Yes
increment BigInt No
decrement BigInt No
multiply BigInt No
divide BigInt No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

AmbulanceCreateequipmentInput

Name Type Nullable
set String No

ContactCreateNestedOneWithoutAmbulanceInput

Name Type Nullable
create ContactCreateWithoutAmbulanceInput | ContactUncheckedCreateWithoutAmbulanceInput No
connectOrCreate ContactCreateOrConnectWithoutAmbulanceInput No
connect ContactWhereUniqueInput No

OrganizationCreateNestedOneWithoutAmbulanceInput

Name Type Nullable
create OrganizationCreateWithoutAmbulanceInput | OrganizationUncheckedCreateWithoutAmbulanceInput No
connectOrCreate OrganizationCreateOrConnectWithoutAmbulanceInput No
connect OrganizationWhereUniqueInput No

PersonCreateNestedOneWithoutAmbulanceInput

Name Type Nullable
create PersonCreateWithoutAmbulanceInput | PersonUncheckedCreateWithoutAmbulanceInput No
connectOrCreate PersonCreateOrConnectWithoutAmbulanceInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutAmbulanceInput

Name Type Nullable
create VersionCreateWithoutAmbulanceInput | VersionUncheckedCreateWithoutAmbulanceInput No
connectOrCreate VersionCreateOrConnectWithoutAmbulanceInput No
connect VersionWhereUniqueInput No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

AmbulanceUpdateequipmentInput

Name Type Nullable
set String No
push String | String No





IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No


PersonCreateNestedOneWithoutBloodCenterInput

Name Type Nullable
create PersonCreateWithoutBloodCenterInput | PersonUncheckedCreateWithoutBloodCenterInput No
connectOrCreate PersonCreateOrConnectWithoutBloodCenterInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutBloodCenterInput

Name Type Nullable
create VersionCreateWithoutBloodCenterInput | VersionUncheckedCreateWithoutBloodCenterInput No
connectOrCreate VersionCreateOrConnectWithoutBloodCenterInput No
connect VersionWhereUniqueInput No








BloodDonationUpdateManyWithoutBloodCenterNestedInput

Name Type Nullable
create BloodDonationCreateWithoutBloodCenterInput | BloodDonationCreateWithoutBloodCenterInput[] | BloodDonationUncheckedCreateWithoutBloodCenterInput | BloodDonationUncheckedCreateWithoutBloodCenterInput[] No
connectOrCreate BloodDonationCreateOrConnectWithoutBloodCenterInput | BloodDonationCreateOrConnectWithoutBloodCenterInput[] No
upsert BloodDonationUpsertWithWhereUniqueWithoutBloodCenterInput | BloodDonationUpsertWithWhereUniqueWithoutBloodCenterInput[] No
createMany BloodDonationCreateManyBloodCenterInputEnvelope No
set BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
disconnect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
delete BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
connect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
update BloodDonationUpdateWithWhereUniqueWithoutBloodCenterInput | BloodDonationUpdateWithWhereUniqueWithoutBloodCenterInput[] No
updateMany BloodDonationUpdateManyWithWhereWithoutBloodCenterInput | BloodDonationUpdateManyWithWhereWithoutBloodCenterInput[] No
deleteMany BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No

ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput

Name Type Nullable
create ContactCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] | ContactUncheckedCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUncheckedCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
connectOrCreate ContactCreateOrConnectWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactCreateOrConnectWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
upsert ContactUpsertWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUpsertWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
createMany ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUpdateWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
updateMany ContactUpdateManyWithWhereWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUpdateManyWithWhereWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput

Name Type Nullable
create BloodDonationCreateWithoutBloodCenterInput | BloodDonationCreateWithoutBloodCenterInput[] | BloodDonationUncheckedCreateWithoutBloodCenterInput | BloodDonationUncheckedCreateWithoutBloodCenterInput[] No
connectOrCreate BloodDonationCreateOrConnectWithoutBloodCenterInput | BloodDonationCreateOrConnectWithoutBloodCenterInput[] No
upsert BloodDonationUpsertWithWhereUniqueWithoutBloodCenterInput | BloodDonationUpsertWithWhereUniqueWithoutBloodCenterInput[] No
createMany BloodDonationCreateManyBloodCenterInputEnvelope No
set BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
disconnect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
delete BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
connect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
update BloodDonationUpdateWithWhereUniqueWithoutBloodCenterInput | BloodDonationUpdateWithWhereUniqueWithoutBloodCenterInput[] No
updateMany BloodDonationUpdateManyWithWhereWithoutBloodCenterInput | BloodDonationUpdateManyWithWhereWithoutBloodCenterInput[] No
deleteMany BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No

ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput

Name Type Nullable
create ContactCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] | ContactUncheckedCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUncheckedCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
connectOrCreate ContactCreateOrConnectWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactCreateOrConnectWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
upsert ContactUpsertWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUpsertWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
createMany ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUpdateWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
updateMany ContactUpdateManyWithWhereWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUpdateManyWithWhereWithoutBloodCenter_Contact_blood_centerToBloodCenterInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

BloodDonationCreatebagsInput

Name Type Nullable
set String No

BloodCenterCreateNestedOneWithoutBloodDonationInput

Name Type Nullable
create BloodCenterCreateWithoutBloodDonationInput | BloodCenterUncheckedCreateWithoutBloodDonationInput No
connectOrCreate BloodCenterCreateOrConnectWithoutBloodDonationInput No
connect BloodCenterWhereUniqueInput No

PersonCreateNestedOneWithoutBloodDonationInput

Name Type Nullable
create PersonCreateWithoutBloodDonationInput | PersonUncheckedCreateWithoutBloodDonationInput No
connectOrCreate PersonCreateOrConnectWithoutBloodDonationInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutBloodDonationInput

Name Type Nullable
create VersionCreateWithoutBloodDonationInput | VersionUncheckedCreateWithoutBloodDonationInput No
connectOrCreate VersionCreateOrConnectWithoutBloodDonationInput No
connect VersionWhereUniqueInput No

BloodDonationUpdatebagsInput

Name Type Nullable
set String No
push String | String No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes






PersonCreateNestedOneWithoutClub_Club_founderToPersonInput

Name Type Nullable
create PersonCreateWithoutClub_Club_founderToPersonInput | PersonUncheckedCreateWithoutClub_Club_founderToPersonInput No
connectOrCreate PersonCreateOrConnectWithoutClub_Club_founderToPersonInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutClubInput

Name Type Nullable
create VersionCreateWithoutClubInput | VersionUncheckedCreateWithoutClubInput No
connectOrCreate VersionCreateOrConnectWithoutClubInput No
connect VersionWhereUniqueInput No













ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput

Name Type Nullable
create ContactCreateWithoutClub_Contact_clubToClubInput | ContactCreateWithoutClub_Contact_clubToClubInput[] | ContactUncheckedCreateWithoutClub_Contact_clubToClubInput | ContactUncheckedCreateWithoutClub_Contact_clubToClubInput[] No
connectOrCreate ContactCreateOrConnectWithoutClub_Contact_clubToClubInput | ContactCreateOrConnectWithoutClub_Contact_clubToClubInput[] No
upsert ContactUpsertWithWhereUniqueWithoutClub_Contact_clubToClubInput | ContactUpsertWithWhereUniqueWithoutClub_Contact_clubToClubInput[] No
createMany ContactCreateManyClub_Contact_clubToClubInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutClub_Contact_clubToClubInput | ContactUpdateWithWhereUniqueWithoutClub_Contact_clubToClubInput[] No
updateMany ContactUpdateManyWithWhereWithoutClub_Contact_clubToClubInput | ContactUpdateManyWithWhereWithoutClub_Contact_clubToClubInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

MemberUpdateManyWithoutClubNestedInput

Name Type Nullable
create MemberCreateWithoutClubInput | MemberCreateWithoutClubInput[] | MemberUncheckedCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput[] No
connectOrCreate MemberCreateOrConnectWithoutClubInput | MemberCreateOrConnectWithoutClubInput[] No
upsert MemberUpsertWithWhereUniqueWithoutClubInput | MemberUpsertWithWhereUniqueWithoutClubInput[] No
createMany MemberCreateManyClubInputEnvelope No
set MemberWhereUniqueInput | MemberWhereUniqueInput[] No
disconnect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
delete MemberWhereUniqueInput | MemberWhereUniqueInput[] No
connect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
update MemberUpdateWithWhereUniqueWithoutClubInput | MemberUpdateWithWhereUniqueWithoutClubInput[] No
updateMany MemberUpdateManyWithWhereWithoutClubInput | MemberUpdateManyWithWhereWithoutClubInput[] No
deleteMany MemberScalarWhereInput | MemberScalarWhereInput[] No

OrganizationUpdateManyWithoutClubNestedInput

Name Type Nullable
create OrganizationCreateWithoutClubInput | OrganizationCreateWithoutClubInput[] | OrganizationUncheckedCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutClubInput | OrganizationCreateOrConnectWithoutClubInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutClubInput | OrganizationUpsertWithWhereUniqueWithoutClubInput[] No
createMany OrganizationCreateManyClubInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutClubInput | OrganizationUpdateWithWhereUniqueWithoutClubInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutClubInput | OrganizationUpdateManyWithWhereWithoutClubInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No

ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput

Name Type Nullable
create ContactCreateWithoutClub_Contact_clubToClubInput | ContactCreateWithoutClub_Contact_clubToClubInput[] | ContactUncheckedCreateWithoutClub_Contact_clubToClubInput | ContactUncheckedCreateWithoutClub_Contact_clubToClubInput[] No
connectOrCreate ContactCreateOrConnectWithoutClub_Contact_clubToClubInput | ContactCreateOrConnectWithoutClub_Contact_clubToClubInput[] No
upsert ContactUpsertWithWhereUniqueWithoutClub_Contact_clubToClubInput | ContactUpsertWithWhereUniqueWithoutClub_Contact_clubToClubInput[] No
createMany ContactCreateManyClub_Contact_clubToClubInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutClub_Contact_clubToClubInput | ContactUpdateWithWhereUniqueWithoutClub_Contact_clubToClubInput[] No
updateMany ContactUpdateManyWithWhereWithoutClub_Contact_clubToClubInput | ContactUpdateManyWithWhereWithoutClub_Contact_clubToClubInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

MemberUncheckedUpdateManyWithoutClubNestedInput

Name Type Nullable
create MemberCreateWithoutClubInput | MemberCreateWithoutClubInput[] | MemberUncheckedCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput[] No
connectOrCreate MemberCreateOrConnectWithoutClubInput | MemberCreateOrConnectWithoutClubInput[] No
upsert MemberUpsertWithWhereUniqueWithoutClubInput | MemberUpsertWithWhereUniqueWithoutClubInput[] No
createMany MemberCreateManyClubInputEnvelope No
set MemberWhereUniqueInput | MemberWhereUniqueInput[] No
disconnect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
delete MemberWhereUniqueInput | MemberWhereUniqueInput[] No
connect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
update MemberUpdateWithWhereUniqueWithoutClubInput | MemberUpdateWithWhereUniqueWithoutClubInput[] No
updateMany MemberUpdateManyWithWhereWithoutClubInput | MemberUpdateManyWithWhereWithoutClubInput[] No
deleteMany MemberScalarWhereInput | MemberScalarWhereInput[] No

OrganizationUncheckedUpdateManyWithoutClubNestedInput

Name Type Nullable
create OrganizationCreateWithoutClubInput | OrganizationCreateWithoutClubInput[] | OrganizationUncheckedCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutClubInput | OrganizationCreateOrConnectWithoutClubInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutClubInput | OrganizationUpsertWithWhereUniqueWithoutClubInput[] No
createMany OrganizationCreateManyClubInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutClubInput | OrganizationUpdateWithWhereUniqueWithoutClubInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutClubInput | OrganizationUpdateManyWithWhereWithoutClubInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No





ClubCreateNestedOneWithoutContact_Contact_clubToClubInput

Name Type Nullable
create ClubCreateWithoutContact_Contact_clubToClubInput | ClubUncheckedCreateWithoutContact_Contact_clubToClubInput No
connectOrCreate ClubCreateOrConnectWithoutContact_Contact_clubToClubInput No
connect ClubWhereUniqueInput No

CountryCreateNestedOneWithoutContactInput

Name Type Nullable
create CountryCreateWithoutContactInput | CountryUncheckedCreateWithoutContactInput No
connectOrCreate CountryCreateOrConnectWithoutContactInput No
connect CountryWhereUniqueInput No

DonationCreateNestedOneWithoutContactInput

Name Type Nullable
create DonationCreateWithoutContactInput | DonationUncheckedCreateWithoutContactInput No
connectOrCreate DonationCreateOrConnectWithoutContactInput No
connect DonationWhereUniqueInput No



VersionCreateNestedOneWithoutContactInput

Name Type Nullable
create VersionCreateWithoutContactInput | VersionUncheckedCreateWithoutContactInput No
connectOrCreate VersionCreateOrConnectWithoutContactInput No
connect VersionWhereUniqueInput No








AmbulanceUpdateManyWithoutContactNestedInput

Name Type Nullable
create AmbulanceCreateWithoutContactInput | AmbulanceCreateWithoutContactInput[] | AmbulanceUncheckedCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutContactInput | AmbulanceCreateOrConnectWithoutContactInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutContactInput | AmbulanceUpsertWithWhereUniqueWithoutContactInput[] No
createMany AmbulanceCreateManyContactInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutContactInput | AmbulanceUpdateWithWhereUniqueWithoutContactInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutContactInput | AmbulanceUpdateManyWithWhereWithoutContactInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput

Name Type Nullable
create BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput | BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput[] | BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput | BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput[] No
connectOrCreate BloodCenterCreateOrConnectWithoutContact_BloodCenter_contactToContactInput | BloodCenterCreateOrConnectWithoutContact_BloodCenter_contactToContactInput[] No
upsert BloodCenterUpsertWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput | BloodCenterUpsertWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput[] No
createMany BloodCenterCreateManyContact_BloodCenter_contactToContactInputEnvelope No
set BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
disconnect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
delete BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
connect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
update BloodCenterUpdateWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput | BloodCenterUpdateWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput[] No
updateMany BloodCenterUpdateManyWithWhereWithoutContact_BloodCenter_contactToContactInput | BloodCenterUpdateManyWithWhereWithoutContact_BloodCenter_contactToContactInput[] No
deleteMany BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No

ClubUpdateManyWithoutContact_Club_contactToContactNestedInput

Name Type Nullable
create ClubCreateWithoutContact_Club_contactToContactInput | ClubCreateWithoutContact_Club_contactToContactInput[] | ClubUncheckedCreateWithoutContact_Club_contactToContactInput | ClubUncheckedCreateWithoutContact_Club_contactToContactInput[] No
connectOrCreate ClubCreateOrConnectWithoutContact_Club_contactToContactInput | ClubCreateOrConnectWithoutContact_Club_contactToContactInput[] No
upsert ClubUpsertWithWhereUniqueWithoutContact_Club_contactToContactInput | ClubUpsertWithWhereUniqueWithoutContact_Club_contactToContactInput[] No
createMany ClubCreateManyContact_Club_contactToContactInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutContact_Club_contactToContactInput | ClubUpdateWithWhereUniqueWithoutContact_Club_contactToContactInput[] No
updateMany ClubUpdateManyWithWhereWithoutContact_Club_contactToContactInput | ClubUpdateManyWithWhereWithoutContact_Club_contactToContactInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput

Name Type Nullable
create BloodCenterCreateWithoutContact_Contact_blood_centerToBloodCenterInput | BloodCenterUncheckedCreateWithoutContact_Contact_blood_centerToBloodCenterInput No
connectOrCreate BloodCenterCreateOrConnectWithoutContact_Contact_blood_centerToBloodCenterInput No
upsert BloodCenterUpsertWithoutContact_Contact_blood_centerToBloodCenterInput No
disconnect Boolean | BloodCenterWhereInput No
delete Boolean | BloodCenterWhereInput No
connect BloodCenterWhereUniqueInput No
update BloodCenterUpdateToOneWithWhereWithoutContact_Contact_blood_centerToBloodCenterInput | BloodCenterUpdateWithoutContact_Contact_blood_centerToBloodCenterInput | BloodCenterUncheckedUpdateWithoutContact_Contact_blood_centerToBloodCenterInput No







HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput

Name Type Nullable
create HospitalCreateWithoutContact_Hospital_contactToContactInput | HospitalCreateWithoutContact_Hospital_contactToContactInput[] | HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput | HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput[] No
connectOrCreate HospitalCreateOrConnectWithoutContact_Hospital_contactToContactInput | HospitalCreateOrConnectWithoutContact_Hospital_contactToContactInput[] No
upsert HospitalUpsertWithWhereUniqueWithoutContact_Hospital_contactToContactInput | HospitalUpsertWithWhereUniqueWithoutContact_Hospital_contactToContactInput[] No
createMany HospitalCreateManyContact_Hospital_contactToContactInputEnvelope No
set HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
disconnect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
delete HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
connect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
update HospitalUpdateWithWhereUniqueWithoutContact_Hospital_contactToContactInput | HospitalUpdateWithWhereUniqueWithoutContact_Hospital_contactToContactInput[] No
updateMany HospitalUpdateManyWithWhereWithoutContact_Hospital_contactToContactInput | HospitalUpdateManyWithWhereWithoutContact_Hospital_contactToContactInput[] No
deleteMany HospitalScalarWhereInput | HospitalScalarWhereInput[] No

PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput

Name Type Nullable
create PersonCreateWithoutContact_Person_contact_idToContactInput | PersonCreateWithoutContact_Person_contact_idToContactInput[] | PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput | PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput[] No
connectOrCreate PersonCreateOrConnectWithoutContact_Person_contact_idToContactInput | PersonCreateOrConnectWithoutContact_Person_contact_idToContactInput[] No
upsert PersonUpsertWithWhereUniqueWithoutContact_Person_contact_idToContactInput | PersonUpsertWithWhereUniqueWithoutContact_Person_contact_idToContactInput[] No
createMany PersonCreateManyContact_Person_contact_idToContactInputEnvelope No
set PersonWhereUniqueInput | PersonWhereUniqueInput[] No
disconnect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
delete PersonWhereUniqueInput | PersonWhereUniqueInput[] No
connect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
update PersonUpdateWithWhereUniqueWithoutContact_Person_contact_idToContactInput | PersonUpdateWithWhereUniqueWithoutContact_Person_contact_idToContactInput[] No
updateMany PersonUpdateManyWithWhereWithoutContact_Person_contact_idToContactInput | PersonUpdateManyWithWhereWithoutContact_Person_contact_idToContactInput[] No
deleteMany PersonScalarWhereInput | PersonScalarWhereInput[] No

AmbulanceUncheckedUpdateManyWithoutContactNestedInput

Name Type Nullable
create AmbulanceCreateWithoutContactInput | AmbulanceCreateWithoutContactInput[] | AmbulanceUncheckedCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutContactInput | AmbulanceCreateOrConnectWithoutContactInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutContactInput | AmbulanceUpsertWithWhereUniqueWithoutContactInput[] No
createMany AmbulanceCreateManyContactInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutContactInput | AmbulanceUpdateWithWhereUniqueWithoutContactInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutContactInput | AmbulanceUpdateManyWithWhereWithoutContactInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput

Name Type Nullable
create BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput | BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput[] | BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput | BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput[] No
connectOrCreate BloodCenterCreateOrConnectWithoutContact_BloodCenter_contactToContactInput | BloodCenterCreateOrConnectWithoutContact_BloodCenter_contactToContactInput[] No
upsert BloodCenterUpsertWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput | BloodCenterUpsertWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput[] No
createMany BloodCenterCreateManyContact_BloodCenter_contactToContactInputEnvelope No
set BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
disconnect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
delete BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
connect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
update BloodCenterUpdateWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput | BloodCenterUpdateWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput[] No
updateMany BloodCenterUpdateManyWithWhereWithoutContact_BloodCenter_contactToContactInput | BloodCenterUpdateManyWithWhereWithoutContact_BloodCenter_contactToContactInput[] No
deleteMany BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No

ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput

Name Type Nullable
create ClubCreateWithoutContact_Club_contactToContactInput | ClubCreateWithoutContact_Club_contactToContactInput[] | ClubUncheckedCreateWithoutContact_Club_contactToContactInput | ClubUncheckedCreateWithoutContact_Club_contactToContactInput[] No
connectOrCreate ClubCreateOrConnectWithoutContact_Club_contactToContactInput | ClubCreateOrConnectWithoutContact_Club_contactToContactInput[] No
upsert ClubUpsertWithWhereUniqueWithoutContact_Club_contactToContactInput | ClubUpsertWithWhereUniqueWithoutContact_Club_contactToContactInput[] No
createMany ClubCreateManyContact_Club_contactToContactInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutContact_Club_contactToContactInput | ClubUpdateWithWhereUniqueWithoutContact_Club_contactToContactInput[] No
updateMany ClubUpdateManyWithWhereWithoutContact_Club_contactToContactInput | ClubUpdateManyWithWhereWithoutContact_Club_contactToContactInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput

Name Type Nullable
create HospitalCreateWithoutContact_Hospital_contactToContactInput | HospitalCreateWithoutContact_Hospital_contactToContactInput[] | HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput | HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput[] No
connectOrCreate HospitalCreateOrConnectWithoutContact_Hospital_contactToContactInput | HospitalCreateOrConnectWithoutContact_Hospital_contactToContactInput[] No
upsert HospitalUpsertWithWhereUniqueWithoutContact_Hospital_contactToContactInput | HospitalUpsertWithWhereUniqueWithoutContact_Hospital_contactToContactInput[] No
createMany HospitalCreateManyContact_Hospital_contactToContactInputEnvelope No
set HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
disconnect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
delete HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
connect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
update HospitalUpdateWithWhereUniqueWithoutContact_Hospital_contactToContactInput | HospitalUpdateWithWhereUniqueWithoutContact_Hospital_contactToContactInput[] No
updateMany HospitalUpdateManyWithWhereWithoutContact_Hospital_contactToContactInput | HospitalUpdateManyWithWhereWithoutContact_Hospital_contactToContactInput[] No
deleteMany HospitalScalarWhereInput | HospitalScalarWhereInput[] No

PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput

Name Type Nullable
create PersonCreateWithoutContact_Person_contact_idToContactInput | PersonCreateWithoutContact_Person_contact_idToContactInput[] | PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput | PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput[] No
connectOrCreate PersonCreateOrConnectWithoutContact_Person_contact_idToContactInput | PersonCreateOrConnectWithoutContact_Person_contact_idToContactInput[] No
upsert PersonUpsertWithWhereUniqueWithoutContact_Person_contact_idToContactInput | PersonUpsertWithWhereUniqueWithoutContact_Person_contact_idToContactInput[] No
createMany PersonCreateManyContact_Person_contact_idToContactInputEnvelope No
set PersonWhereUniqueInput | PersonWhereUniqueInput[] No
disconnect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
delete PersonWhereUniqueInput | PersonWhereUniqueInput[] No
connect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
update PersonUpdateWithWhereUniqueWithoutContact_Person_contact_idToContactInput | PersonUpdateWithWhereUniqueWithoutContact_Person_contact_idToContactInput[] No
updateMany PersonUpdateManyWithWhereWithoutContact_Person_contact_idToContactInput | PersonUpdateManyWithWhereWithoutContact_Person_contact_idToContactInput[] No
deleteMany PersonScalarWhereInput | PersonScalarWhereInput[] No


VersionCreateNestedOneWithoutCountryInput

Name Type Nullable
create VersionCreateWithoutCountryInput | VersionUncheckedCreateWithoutCountryInput No
connectOrCreate VersionCreateOrConnectWithoutCountryInput No
connect VersionWhereUniqueInput No


ContactUpdateManyWithoutCountryNestedInput

Name Type Nullable
create ContactCreateWithoutCountryInput | ContactCreateWithoutCountryInput[] | ContactUncheckedCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput[] No
connectOrCreate ContactCreateOrConnectWithoutCountryInput | ContactCreateOrConnectWithoutCountryInput[] No
upsert ContactUpsertWithWhereUniqueWithoutCountryInput | ContactUpsertWithWhereUniqueWithoutCountryInput[] No
createMany ContactCreateManyCountryInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutCountryInput | ContactUpdateWithWhereUniqueWithoutCountryInput[] No
updateMany ContactUpdateManyWithWhereWithoutCountryInput | ContactUpdateManyWithWhereWithoutCountryInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No


ContactUncheckedUpdateManyWithoutCountryNestedInput

Name Type Nullable
create ContactCreateWithoutCountryInput | ContactCreateWithoutCountryInput[] | ContactUncheckedCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput[] No
connectOrCreate ContactCreateOrConnectWithoutCountryInput | ContactCreateOrConnectWithoutCountryInput[] No
upsert ContactUpsertWithWhereUniqueWithoutCountryInput | ContactUpsertWithWhereUniqueWithoutCountryInput[] No
createMany ContactCreateManyCountryInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutCountryInput | ContactUpdateWithWhereUniqueWithoutCountryInput[] No
updateMany ContactUpdateManyWithWhereWithoutCountryInput | ContactUpdateManyWithWhereWithoutCountryInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

VersionCreateNestedOneWithoutDeviceInput

Name Type Nullable
create VersionCreateWithoutDeviceInput | VersionUncheckedCreateWithoutDeviceInput No
connectOrCreate VersionCreateOrConnectWithoutDeviceInput No
connect VersionWhereUniqueInput No




LoginRecordUpdateManyWithoutDeviceNestedInput

Name Type Nullable
create LoginRecordCreateWithoutDeviceInput | LoginRecordCreateWithoutDeviceInput[] | LoginRecordUncheckedCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput[] No
connectOrCreate LoginRecordCreateOrConnectWithoutDeviceInput | LoginRecordCreateOrConnectWithoutDeviceInput[] No
upsert LoginRecordUpsertWithWhereUniqueWithoutDeviceInput | LoginRecordUpsertWithWhereUniqueWithoutDeviceInput[] No
createMany LoginRecordCreateManyDeviceInputEnvelope No
set LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
disconnect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
delete LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
connect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
update LoginRecordUpdateWithWhereUniqueWithoutDeviceInput | LoginRecordUpdateWithWhereUniqueWithoutDeviceInput[] No
updateMany LoginRecordUpdateManyWithWhereWithoutDeviceInput | LoginRecordUpdateManyWithWhereWithoutDeviceInput[] No
deleteMany LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] No

LoginRecordUncheckedUpdateManyWithoutDeviceNestedInput

Name Type Nullable
create LoginRecordCreateWithoutDeviceInput | LoginRecordCreateWithoutDeviceInput[] | LoginRecordUncheckedCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput[] No
connectOrCreate LoginRecordCreateOrConnectWithoutDeviceInput | LoginRecordCreateOrConnectWithoutDeviceInput[] No
upsert LoginRecordUpsertWithWhereUniqueWithoutDeviceInput | LoginRecordUpsertWithWhereUniqueWithoutDeviceInput[] No
createMany LoginRecordCreateManyDeviceInputEnvelope No
set LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
disconnect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
delete LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
connect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
update LoginRecordUpdateWithWhereUniqueWithoutDeviceInput | LoginRecordUpdateWithWhereUniqueWithoutDeviceInput[] No
updateMany LoginRecordUpdateManyWithWhereWithoutDeviceInput | LoginRecordUpdateManyWithWhereWithoutDeviceInput[] No
deleteMany LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] No


MemberCreateNestedOneWithoutDonationInput

Name Type Nullable
create MemberCreateWithoutDonationInput | MemberUncheckedCreateWithoutDonationInput No
connectOrCreate MemberCreateOrConnectWithoutDonationInput No
connect MemberWhereUniqueInput No

OrganizationCreateNestedOneWithoutDonationInput

Name Type Nullable
create OrganizationCreateWithoutDonationInput | OrganizationUncheckedCreateWithoutDonationInput No
connectOrCreate OrganizationCreateOrConnectWithoutDonationInput No
connect OrganizationWhereUniqueInput No

PersonCreateNestedOneWithoutDonationInput

Name Type Nullable
create PersonCreateWithoutDonationInput | PersonUncheckedCreateWithoutDonationInput No
connectOrCreate PersonCreateOrConnectWithoutDonationInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutDonationInput

Name Type Nullable
create VersionCreateWithoutDonationInput | VersionUncheckedCreateWithoutDonationInput No
connectOrCreate VersionCreateOrConnectWithoutDonationInput No
connect VersionWhereUniqueInput No


ContactUpdateManyWithoutDonationNestedInput

Name Type Nullable
create ContactCreateWithoutDonationInput | ContactCreateWithoutDonationInput[] | ContactUncheckedCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput[] No
connectOrCreate ContactCreateOrConnectWithoutDonationInput | ContactCreateOrConnectWithoutDonationInput[] No
upsert ContactUpsertWithWhereUniqueWithoutDonationInput | ContactUpsertWithWhereUniqueWithoutDonationInput[] No
createMany ContactCreateManyDonationInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutDonationInput | ContactUpdateWithWhereUniqueWithoutDonationInput[] No
updateMany ContactUpdateManyWithWhereWithoutDonationInput | ContactUpdateManyWithWhereWithoutDonationInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No





ContactUncheckedUpdateManyWithoutDonationNestedInput

Name Type Nullable
create ContactCreateWithoutDonationInput | ContactCreateWithoutDonationInput[] | ContactUncheckedCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput[] No
connectOrCreate ContactCreateOrConnectWithoutDonationInput | ContactCreateOrConnectWithoutDonationInput[] No
upsert ContactUpsertWithWhereUniqueWithoutDonationInput | ContactUpsertWithWhereUniqueWithoutDonationInput[] No
createMany ContactCreateManyDonationInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutDonationInput | ContactUpdateWithWhereUniqueWithoutDonationInput[] No
updateMany ContactUpdateManyWithWhereWithoutDonationInput | ContactUpdateManyWithWhereWithoutDonationInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

HospitalCreateservicesInput

Name Type Nullable
set String No

HospitalCreatespecialtiesInput

Name Type Nullable
set String No



LocationCreateNestedOneWithoutHospitalInput

Name Type Nullable
create LocationCreateWithoutHospitalInput | LocationUncheckedCreateWithoutHospitalInput No
connectOrCreate LocationCreateOrConnectWithoutHospitalInput No
connect LocationWhereUniqueInput No

VersionCreateNestedOneWithoutHospitalInput

Name Type Nullable
create VersionCreateWithoutHospitalInput | VersionUncheckedCreateWithoutHospitalInput No
connectOrCreate VersionCreateOrConnectWithoutHospitalInput No
connect VersionWhereUniqueInput No


NullableBoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean | Null Yes

HospitalUpdateservicesInput

Name Type Nullable
set String No
push String | String No

HospitalUpdatespecialtiesInput

Name Type Nullable
set String No
push String | String No

NullableFloatFieldUpdateOperationsInput

Name Type Nullable
set Float | Null Yes
increment Float No
decrement Float No
multiply Float No
divide Float No

NullableEnumFacilityTypeFieldUpdateOperationsInput

Name Type Nullable
set FacilityType | Null Yes

ContactUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput

Name Type Nullable
create ContactCreateWithoutHospital_Contact_hospitalToHospitalInput | ContactCreateWithoutHospital_Contact_hospitalToHospitalInput[] | ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput | ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput[] No
connectOrCreate ContactCreateOrConnectWithoutHospital_Contact_hospitalToHospitalInput | ContactCreateOrConnectWithoutHospital_Contact_hospitalToHospitalInput[] No
upsert ContactUpsertWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput | ContactUpsertWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput[] No
createMany ContactCreateManyHospital_Contact_hospitalToHospitalInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput | ContactUpdateWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput[] No
updateMany ContactUpdateManyWithWhereWithoutHospital_Contact_hospitalToHospitalInput | ContactUpdateManyWithWhereWithoutHospital_Contact_hospitalToHospitalInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No




ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput

Name Type Nullable
create ContactCreateWithoutHospital_Contact_hospitalToHospitalInput | ContactCreateWithoutHospital_Contact_hospitalToHospitalInput[] | ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput | ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput[] No
connectOrCreate ContactCreateOrConnectWithoutHospital_Contact_hospitalToHospitalInput | ContactCreateOrConnectWithoutHospital_Contact_hospitalToHospitalInput[] No
upsert ContactUpsertWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput | ContactUpsertWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput[] No
createMany ContactCreateManyHospital_Contact_hospitalToHospitalInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput | ContactUpdateWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput[] No
updateMany ContactUpdateManyWithWhereWithoutHospital_Contact_hospitalToHospitalInput | ContactUpdateManyWithWhereWithoutHospital_Contact_hospitalToHospitalInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No


VersionCreateNestedOneWithoutLocationInput

Name Type Nullable
create VersionCreateWithoutLocationInput | VersionUncheckedCreateWithoutLocationInput No
connectOrCreate VersionCreateOrConnectWithoutLocationInput No
connect VersionWhereUniqueInput No


FloatFieldUpdateOperationsInput

Name Type Nullable
set Float No
increment Float No
decrement Float No
multiply Float No
divide Float No

HospitalUpdateManyWithoutLocationNestedInput

Name Type Nullable
create HospitalCreateWithoutLocationInput | HospitalCreateWithoutLocationInput[] | HospitalUncheckedCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput[] No
connectOrCreate HospitalCreateOrConnectWithoutLocationInput | HospitalCreateOrConnectWithoutLocationInput[] No
upsert HospitalUpsertWithWhereUniqueWithoutLocationInput | HospitalUpsertWithWhereUniqueWithoutLocationInput[] No
createMany HospitalCreateManyLocationInputEnvelope No
set HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
disconnect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
delete HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
connect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
update HospitalUpdateWithWhereUniqueWithoutLocationInput | HospitalUpdateWithWhereUniqueWithoutLocationInput[] No
updateMany HospitalUpdateManyWithWhereWithoutLocationInput | HospitalUpdateManyWithWhereWithoutLocationInput[] No
deleteMany HospitalScalarWhereInput | HospitalScalarWhereInput[] No


HospitalUncheckedUpdateManyWithoutLocationNestedInput

Name Type Nullable
create HospitalCreateWithoutLocationInput | HospitalCreateWithoutLocationInput[] | HospitalUncheckedCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput[] No
connectOrCreate HospitalCreateOrConnectWithoutLocationInput | HospitalCreateOrConnectWithoutLocationInput[] No
upsert HospitalUpsertWithWhereUniqueWithoutLocationInput | HospitalUpsertWithWhereUniqueWithoutLocationInput[] No
createMany HospitalCreateManyLocationInputEnvelope No
set HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
disconnect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
delete HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
connect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
update HospitalUpdateWithWhereUniqueWithoutLocationInput | HospitalUpdateWithWhereUniqueWithoutLocationInput[] No
updateMany HospitalUpdateManyWithWhereWithoutLocationInput | HospitalUpdateManyWithWhereWithoutLocationInput[] No
deleteMany HospitalScalarWhereInput | HospitalScalarWhereInput[] No

DeviceCreateNestedOneWithoutLoginRecordInput

Name Type Nullable
create DeviceCreateWithoutLoginRecordInput | DeviceUncheckedCreateWithoutLoginRecordInput No
connectOrCreate DeviceCreateOrConnectWithoutLoginRecordInput No
connect DeviceWhereUniqueInput No

VersionCreateNestedOneWithoutLoginRecordInput

Name Type Nullable
create VersionCreateWithoutLoginRecordInput | VersionUncheckedCreateWithoutLoginRecordInput No
connectOrCreate VersionCreateOrConnectWithoutLoginRecordInput No
connect VersionWhereUniqueInput No







NullableEnumAuthenticationMethodFieldUpdateOperationsInput

Name Type Nullable
set AuthenticationMethod | Null Yes



OrganizationSettingsUpdateManyWithoutLoginRecordNestedInput

Name Type Nullable
create OrganizationSettingsCreateWithoutLoginRecordInput | OrganizationSettingsCreateWithoutLoginRecordInput[] | OrganizationSettingsUncheckedCreateWithoutLoginRecordInput | OrganizationSettingsUncheckedCreateWithoutLoginRecordInput[] No
connectOrCreate OrganizationSettingsCreateOrConnectWithoutLoginRecordInput | OrganizationSettingsCreateOrConnectWithoutLoginRecordInput[] No
upsert OrganizationSettingsUpsertWithWhereUniqueWithoutLoginRecordInput | OrganizationSettingsUpsertWithWhereUniqueWithoutLoginRecordInput[] No
createMany OrganizationSettingsCreateManyLoginRecordInputEnvelope No
set OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
disconnect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
delete OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
connect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
update OrganizationSettingsUpdateWithWhereUniqueWithoutLoginRecordInput | OrganizationSettingsUpdateWithWhereUniqueWithoutLoginRecordInput[] No
updateMany OrganizationSettingsUpdateManyWithWhereWithoutLoginRecordInput | OrganizationSettingsUpdateManyWithWhereWithoutLoginRecordInput[] No
deleteMany OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] No

UserUpdateManyWithoutLoginRecordNestedInput

Name Type Nullable
create UserCreateWithoutLoginRecordInput | UserCreateWithoutLoginRecordInput[] | UserUncheckedCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput[] No
connectOrCreate UserCreateOrConnectWithoutLoginRecordInput | UserCreateOrConnectWithoutLoginRecordInput[] No
upsert UserUpsertWithWhereUniqueWithoutLoginRecordInput | UserUpsertWithWhereUniqueWithoutLoginRecordInput[] No
createMany UserCreateManyLoginRecordInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutLoginRecordInput | UserUpdateWithWhereUniqueWithoutLoginRecordInput[] No
updateMany UserUpdateManyWithWhereWithoutLoginRecordInput | UserUpdateManyWithWhereWithoutLoginRecordInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserSettingsUpdateManyWithoutLoginRecordNestedInput

Name Type Nullable
create UserSettingsCreateWithoutLoginRecordInput | UserSettingsCreateWithoutLoginRecordInput[] | UserSettingsUncheckedCreateWithoutLoginRecordInput | UserSettingsUncheckedCreateWithoutLoginRecordInput[] No
connectOrCreate UserSettingsCreateOrConnectWithoutLoginRecordInput | UserSettingsCreateOrConnectWithoutLoginRecordInput[] No
upsert UserSettingsUpsertWithWhereUniqueWithoutLoginRecordInput | UserSettingsUpsertWithWhereUniqueWithoutLoginRecordInput[] No
createMany UserSettingsCreateManyLoginRecordInputEnvelope No
set UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
disconnect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
delete UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
connect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
update UserSettingsUpdateWithWhereUniqueWithoutLoginRecordInput | UserSettingsUpdateWithWhereUniqueWithoutLoginRecordInput[] No
updateMany UserSettingsUpdateManyWithWhereWithoutLoginRecordInput | UserSettingsUpdateManyWithWhereWithoutLoginRecordInput[] No
deleteMany UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No

OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput

Name Type Nullable
create OrganizationSettingsCreateWithoutLoginRecordInput | OrganizationSettingsCreateWithoutLoginRecordInput[] | OrganizationSettingsUncheckedCreateWithoutLoginRecordInput | OrganizationSettingsUncheckedCreateWithoutLoginRecordInput[] No
connectOrCreate OrganizationSettingsCreateOrConnectWithoutLoginRecordInput | OrganizationSettingsCreateOrConnectWithoutLoginRecordInput[] No
upsert OrganizationSettingsUpsertWithWhereUniqueWithoutLoginRecordInput | OrganizationSettingsUpsertWithWhereUniqueWithoutLoginRecordInput[] No
createMany OrganizationSettingsCreateManyLoginRecordInputEnvelope No
set OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
disconnect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
delete OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
connect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
update OrganizationSettingsUpdateWithWhereUniqueWithoutLoginRecordInput | OrganizationSettingsUpdateWithWhereUniqueWithoutLoginRecordInput[] No
updateMany OrganizationSettingsUpdateManyWithWhereWithoutLoginRecordInput | OrganizationSettingsUpdateManyWithWhereWithoutLoginRecordInput[] No
deleteMany OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] No

UserUncheckedUpdateManyWithoutLoginRecordNestedInput

Name Type Nullable
create UserCreateWithoutLoginRecordInput | UserCreateWithoutLoginRecordInput[] | UserUncheckedCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput[] No
connectOrCreate UserCreateOrConnectWithoutLoginRecordInput | UserCreateOrConnectWithoutLoginRecordInput[] No
upsert UserUpsertWithWhereUniqueWithoutLoginRecordInput | UserUpsertWithWhereUniqueWithoutLoginRecordInput[] No
createMany UserCreateManyLoginRecordInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutLoginRecordInput | UserUpdateWithWhereUniqueWithoutLoginRecordInput[] No
updateMany UserUpdateManyWithWhereWithoutLoginRecordInput | UserUpdateManyWithWhereWithoutLoginRecordInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput

Name Type Nullable
create UserSettingsCreateWithoutLoginRecordInput | UserSettingsCreateWithoutLoginRecordInput[] | UserSettingsUncheckedCreateWithoutLoginRecordInput | UserSettingsUncheckedCreateWithoutLoginRecordInput[] No
connectOrCreate UserSettingsCreateOrConnectWithoutLoginRecordInput | UserSettingsCreateOrConnectWithoutLoginRecordInput[] No
upsert UserSettingsUpsertWithWhereUniqueWithoutLoginRecordInput | UserSettingsUpsertWithWhereUniqueWithoutLoginRecordInput[] No
createMany UserSettingsCreateManyLoginRecordInputEnvelope No
set UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
disconnect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
delete UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
connect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
update UserSettingsUpdateWithWhereUniqueWithoutLoginRecordInput | UserSettingsUpdateWithWhereUniqueWithoutLoginRecordInput[] No
updateMany UserSettingsUpdateManyWithWhereWithoutLoginRecordInput | UserSettingsUpdateManyWithWhereWithoutLoginRecordInput[] No
deleteMany UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No


ClubCreateNestedOneWithoutMemberInput

Name Type Nullable
create ClubCreateWithoutMemberInput | ClubUncheckedCreateWithoutMemberInput No
connectOrCreate ClubCreateOrConnectWithoutMemberInput No
connect ClubWhereUniqueInput No

PersonCreateNestedOneWithoutMemberInput

Name Type Nullable
create PersonCreateWithoutMemberInput | PersonUncheckedCreateWithoutMemberInput No
connectOrCreate PersonCreateOrConnectWithoutMemberInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutMemberInput

Name Type Nullable
create VersionCreateWithoutMemberInput | VersionUncheckedCreateWithoutMemberInput No
connectOrCreate VersionCreateOrConnectWithoutMemberInput No
connect VersionWhereUniqueInput No




DonationUpdateManyWithoutMemberNestedInput

Name Type Nullable
create DonationCreateWithoutMemberInput | DonationCreateWithoutMemberInput[] | DonationUncheckedCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput[] No
connectOrCreate DonationCreateOrConnectWithoutMemberInput | DonationCreateOrConnectWithoutMemberInput[] No
upsert DonationUpsertWithWhereUniqueWithoutMemberInput | DonationUpsertWithWhereUniqueWithoutMemberInput[] No
createMany DonationCreateManyMemberInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutMemberInput | DonationUpdateWithWhereUniqueWithoutMemberInput[] No
updateMany DonationUpdateManyWithWhereWithoutMemberInput | DonationUpdateManyWithWhereWithoutMemberInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No




RequestUpdateManyWithoutMemberNestedInput

Name Type Nullable
create RequestCreateWithoutMemberInput | RequestCreateWithoutMemberInput[] | RequestUncheckedCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput[] No
connectOrCreate RequestCreateOrConnectWithoutMemberInput | RequestCreateOrConnectWithoutMemberInput[] No
upsert RequestUpsertWithWhereUniqueWithoutMemberInput | RequestUpsertWithWhereUniqueWithoutMemberInput[] No
createMany RequestCreateManyMemberInputEnvelope No
set RequestWhereUniqueInput | RequestWhereUniqueInput[] No
disconnect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
delete RequestWhereUniqueInput | RequestWhereUniqueInput[] No
connect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
update RequestUpdateWithWhereUniqueWithoutMemberInput | RequestUpdateWithWhereUniqueWithoutMemberInput[] No
updateMany RequestUpdateManyWithWhereWithoutMemberInput | RequestUpdateManyWithWhereWithoutMemberInput[] No
deleteMany RequestScalarWhereInput | RequestScalarWhereInput[] No

DonationUncheckedUpdateManyWithoutMemberNestedInput

Name Type Nullable
create DonationCreateWithoutMemberInput | DonationCreateWithoutMemberInput[] | DonationUncheckedCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput[] No
connectOrCreate DonationCreateOrConnectWithoutMemberInput | DonationCreateOrConnectWithoutMemberInput[] No
upsert DonationUpsertWithWhereUniqueWithoutMemberInput | DonationUpsertWithWhereUniqueWithoutMemberInput[] No
createMany DonationCreateManyMemberInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutMemberInput | DonationUpdateWithWhereUniqueWithoutMemberInput[] No
updateMany DonationUpdateManyWithWhereWithoutMemberInput | DonationUpdateManyWithWhereWithoutMemberInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No

RequestUncheckedUpdateManyWithoutMemberNestedInput

Name Type Nullable
create RequestCreateWithoutMemberInput | RequestCreateWithoutMemberInput[] | RequestUncheckedCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput[] No
connectOrCreate RequestCreateOrConnectWithoutMemberInput | RequestCreateOrConnectWithoutMemberInput[] No
upsert RequestUpsertWithWhereUniqueWithoutMemberInput | RequestUpsertWithWhereUniqueWithoutMemberInput[] No
createMany RequestCreateManyMemberInputEnvelope No
set RequestWhereUniqueInput | RequestWhereUniqueInput[] No
disconnect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
delete RequestWhereUniqueInput | RequestWhereUniqueInput[] No
connect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
update RequestUpdateWithWhereUniqueWithoutMemberInput | RequestUpdateWithWhereUniqueWithoutMemberInput[] No
updateMany RequestUpdateManyWithWhereWithoutMemberInput | RequestUpdateManyWithWhereWithoutMemberInput[] No
deleteMany RequestScalarWhereInput | RequestScalarWhereInput[] No



ClubCreateNestedOneWithoutOrganizationInput

Name Type Nullable
create ClubCreateWithoutOrganizationInput | ClubUncheckedCreateWithoutOrganizationInput No
connectOrCreate ClubCreateOrConnectWithoutOrganizationInput No
connect ClubWhereUniqueInput No


PersonCreateNestedOneWithoutOrganizationInput

Name Type Nullable
create PersonCreateWithoutOrganizationInput | PersonUncheckedCreateWithoutOrganizationInput No
connectOrCreate PersonCreateOrConnectWithoutOrganizationInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutOrganizationInput

Name Type Nullable
create VersionCreateWithoutOrganizationInput | VersionUncheckedCreateWithoutOrganizationInput No
connectOrCreate VersionCreateOrConnectWithoutOrganizationInput No
connect VersionWhereUniqueInput No









EnumOrgTypeFieldUpdateOperationsInput

Name Type Nullable
set OrgType No

AmbulanceUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create AmbulanceCreateWithoutOrganizationInput | AmbulanceCreateWithoutOrganizationInput[] | AmbulanceUncheckedCreateWithoutOrganizationInput | AmbulanceUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutOrganizationInput | AmbulanceCreateOrConnectWithoutOrganizationInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutOrganizationInput | AmbulanceUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany AmbulanceCreateManyOrganizationInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutOrganizationInput | AmbulanceUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutOrganizationInput | AmbulanceUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

DonationUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create DonationCreateWithoutOrganizationInput | DonationCreateWithoutOrganizationInput[] | DonationUncheckedCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate DonationCreateOrConnectWithoutOrganizationInput | DonationCreateOrConnectWithoutOrganizationInput[] No
upsert DonationUpsertWithWhereUniqueWithoutOrganizationInput | DonationUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany DonationCreateManyOrganizationInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutOrganizationInput | DonationUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany DonationUpdateManyWithWhereWithoutOrganizationInput | DonationUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No





SupportUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create SupportCreateWithoutOrganizationInput | SupportCreateWithoutOrganizationInput[] | SupportUncheckedCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate SupportCreateOrConnectWithoutOrganizationInput | SupportCreateOrConnectWithoutOrganizationInput[] No
upsert SupportUpsertWithWhereUniqueWithoutOrganizationInput | SupportUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany SupportCreateManyOrganizationInputEnvelope No
set SupportWhereUniqueInput | SupportWhereUniqueInput[] No
disconnect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
delete SupportWhereUniqueInput | SupportWhereUniqueInput[] No
connect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
update SupportUpdateWithWhereUniqueWithoutOrganizationInput | SupportUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany SupportUpdateManyWithWhereWithoutOrganizationInput | SupportUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany SupportScalarWhereInput | SupportScalarWhereInput[] No

SupportMessageUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create SupportMessageCreateWithoutOrganizationInput | SupportMessageCreateWithoutOrganizationInput[] | SupportMessageUncheckedCreateWithoutOrganizationInput | SupportMessageUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutOrganizationInput | SupportMessageCreateOrConnectWithoutOrganizationInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutOrganizationInput | SupportMessageUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany SupportMessageCreateManyOrganizationInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutOrganizationInput | SupportMessageUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutOrganizationInput | SupportMessageUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

TeamUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create TeamCreateWithoutOrganizationInput | TeamCreateWithoutOrganizationInput[] | TeamUncheckedCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate TeamCreateOrConnectWithoutOrganizationInput | TeamCreateOrConnectWithoutOrganizationInput[] No
upsert TeamUpsertWithWhereUniqueWithoutOrganizationInput | TeamUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany TeamCreateManyOrganizationInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutOrganizationInput | TeamUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany TeamUpdateManyWithWhereWithoutOrganizationInput | TeamUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create AmbulanceCreateWithoutOrganizationInput | AmbulanceCreateWithoutOrganizationInput[] | AmbulanceUncheckedCreateWithoutOrganizationInput | AmbulanceUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutOrganizationInput | AmbulanceCreateOrConnectWithoutOrganizationInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutOrganizationInput | AmbulanceUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany AmbulanceCreateManyOrganizationInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutOrganizationInput | AmbulanceUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutOrganizationInput | AmbulanceUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

DonationUncheckedUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create DonationCreateWithoutOrganizationInput | DonationCreateWithoutOrganizationInput[] | DonationUncheckedCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate DonationCreateOrConnectWithoutOrganizationInput | DonationCreateOrConnectWithoutOrganizationInput[] No
upsert DonationUpsertWithWhereUniqueWithoutOrganizationInput | DonationUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany DonationCreateManyOrganizationInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutOrganizationInput | DonationUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany DonationUpdateManyWithWhereWithoutOrganizationInput | DonationUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No

SupportUncheckedUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create SupportCreateWithoutOrganizationInput | SupportCreateWithoutOrganizationInput[] | SupportUncheckedCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate SupportCreateOrConnectWithoutOrganizationInput | SupportCreateOrConnectWithoutOrganizationInput[] No
upsert SupportUpsertWithWhereUniqueWithoutOrganizationInput | SupportUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany SupportCreateManyOrganizationInputEnvelope No
set SupportWhereUniqueInput | SupportWhereUniqueInput[] No
disconnect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
delete SupportWhereUniqueInput | SupportWhereUniqueInput[] No
connect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
update SupportUpdateWithWhereUniqueWithoutOrganizationInput | SupportUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany SupportUpdateManyWithWhereWithoutOrganizationInput | SupportUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany SupportScalarWhereInput | SupportScalarWhereInput[] No

SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create SupportMessageCreateWithoutOrganizationInput | SupportMessageCreateWithoutOrganizationInput[] | SupportMessageUncheckedCreateWithoutOrganizationInput | SupportMessageUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutOrganizationInput | SupportMessageCreateOrConnectWithoutOrganizationInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutOrganizationInput | SupportMessageUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany SupportMessageCreateManyOrganizationInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutOrganizationInput | SupportMessageUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutOrganizationInput | SupportMessageUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutOrganizationNestedInput

Name Type Nullable
create TeamCreateWithoutOrganizationInput | TeamCreateWithoutOrganizationInput[] | TeamUncheckedCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput[] No
connectOrCreate TeamCreateOrConnectWithoutOrganizationInput | TeamCreateOrConnectWithoutOrganizationInput[] No
upsert TeamUpsertWithWhereUniqueWithoutOrganizationInput | TeamUpsertWithWhereUniqueWithoutOrganizationInput[] No
createMany TeamCreateManyOrganizationInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutOrganizationInput | TeamUpdateWithWhereUniqueWithoutOrganizationInput[] No
updateMany TeamUpdateManyWithWhereWithoutOrganizationInput | TeamUpdateManyWithWhereWithoutOrganizationInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No



VersionCreateNestedOneWithoutOrganizationSettingsInput

Name Type Nullable
create VersionCreateWithoutOrganizationSettingsInput | VersionUncheckedCreateWithoutOrganizationSettingsInput No
connectOrCreate VersionCreateOrConnectWithoutOrganizationSettingsInput No
connect VersionWhereUniqueInput No


EnumLanguageFieldUpdateOperationsInput

Name Type Nullable
set Language No

EnumTimeFormatFieldUpdateOperationsInput

Name Type Nullable
set TimeFormat No

EnumDateFormatFieldUpdateOperationsInput

Name Type Nullable
set DateFormat No

EnumTimezoneFieldUpdateOperationsInput

Name Type Nullable
set Timezone No

NullableEnumThemeFieldUpdateOperationsInput

Name Type Nullable
set Theme | Null Yes

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

OrganizationUpdateManyWithoutOrganizationSettingsNestedInput

Name Type Nullable
create OrganizationCreateWithoutOrganizationSettingsInput | OrganizationCreateWithoutOrganizationSettingsInput[] | OrganizationUncheckedCreateWithoutOrganizationSettingsInput | OrganizationUncheckedCreateWithoutOrganizationSettingsInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutOrganizationSettingsInput | OrganizationCreateOrConnectWithoutOrganizationSettingsInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutOrganizationSettingsInput | OrganizationUpsertWithWhereUniqueWithoutOrganizationSettingsInput[] No
createMany OrganizationCreateManyOrganizationSettingsInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutOrganizationSettingsInput | OrganizationUpdateWithWhereUniqueWithoutOrganizationSettingsInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutOrganizationSettingsInput | OrganizationUpdateManyWithWhereWithoutOrganizationSettingsInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No



OrganizationUncheckedUpdateManyWithoutOrganizationSettingsNestedInput

Name Type Nullable
create OrganizationCreateWithoutOrganizationSettingsInput | OrganizationCreateWithoutOrganizationSettingsInput[] | OrganizationUncheckedCreateWithoutOrganizationSettingsInput | OrganizationUncheckedCreateWithoutOrganizationSettingsInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutOrganizationSettingsInput | OrganizationCreateOrConnectWithoutOrganizationSettingsInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutOrganizationSettingsInput | OrganizationUpsertWithWhereUniqueWithoutOrganizationSettingsInput[] No
createMany OrganizationCreateManyOrganizationSettingsInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutOrganizationSettingsInput | OrganizationUpdateWithWhereUniqueWithoutOrganizationSettingsInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutOrganizationSettingsInput | OrganizationUpdateManyWithWhereWithoutOrganizationSettingsInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No












TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
create TeamCreateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput No
connectOrCreate TeamCreateOrConnectWithoutPerson_Person_teamIdToTeamInput No
connect TeamWhereUniqueInput No

VersionCreateNestedOneWithoutPersonInput

Name Type Nullable
create VersionCreateWithoutPersonInput | VersionUncheckedCreateWithoutPersonInput No
connectOrCreate VersionCreateOrConnectWithoutPersonInput No
connect VersionWhereUniqueInput No



















NullableEnumGenderFieldUpdateOperationsInput

Name Type Nullable
set Gender | Null Yes

AmbulanceUpdateManyWithoutPersonNestedInput

Name Type Nullable
create AmbulanceCreateWithoutPersonInput | AmbulanceCreateWithoutPersonInput[] | AmbulanceUncheckedCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutPersonInput | AmbulanceCreateOrConnectWithoutPersonInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutPersonInput | AmbulanceUpsertWithWhereUniqueWithoutPersonInput[] No
createMany AmbulanceCreateManyPersonInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutPersonInput | AmbulanceUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutPersonInput | AmbulanceUpdateManyWithWhereWithoutPersonInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

BloodCenterUpdateManyWithoutPersonNestedInput

Name Type Nullable
create BloodCenterCreateWithoutPersonInput | BloodCenterCreateWithoutPersonInput[] | BloodCenterUncheckedCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput[] No
connectOrCreate BloodCenterCreateOrConnectWithoutPersonInput | BloodCenterCreateOrConnectWithoutPersonInput[] No
upsert BloodCenterUpsertWithWhereUniqueWithoutPersonInput | BloodCenterUpsertWithWhereUniqueWithoutPersonInput[] No
createMany BloodCenterCreateManyPersonInputEnvelope No
set BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
disconnect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
delete BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
connect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
update BloodCenterUpdateWithWhereUniqueWithoutPersonInput | BloodCenterUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany BloodCenterUpdateManyWithWhereWithoutPersonInput | BloodCenterUpdateManyWithWhereWithoutPersonInput[] No
deleteMany BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No

BloodDonationUpdateManyWithoutPersonNestedInput

Name Type Nullable
create BloodDonationCreateWithoutPersonInput | BloodDonationCreateWithoutPersonInput[] | BloodDonationUncheckedCreateWithoutPersonInput | BloodDonationUncheckedCreateWithoutPersonInput[] No
connectOrCreate BloodDonationCreateOrConnectWithoutPersonInput | BloodDonationCreateOrConnectWithoutPersonInput[] No
upsert BloodDonationUpsertWithWhereUniqueWithoutPersonInput | BloodDonationUpsertWithWhereUniqueWithoutPersonInput[] No
createMany BloodDonationCreateManyPersonInputEnvelope No
set BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
disconnect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
delete BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
connect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
update BloodDonationUpdateWithWhereUniqueWithoutPersonInput | BloodDonationUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany BloodDonationUpdateManyWithWhereWithoutPersonInput | BloodDonationUpdateManyWithWhereWithoutPersonInput[] No
deleteMany BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No

ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput

Name Type Nullable
create ClubCreateWithoutPerson_Club_chairmanToPersonInput | ClubCreateWithoutPerson_Club_chairmanToPersonInput[] | ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput[] No
connectOrCreate ClubCreateOrConnectWithoutPerson_Club_chairmanToPersonInput | ClubCreateOrConnectWithoutPerson_Club_chairmanToPersonInput[] No
upsert ClubUpsertWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput | ClubUpsertWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput[] No
createMany ClubCreateManyPerson_Club_chairmanToPersonInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput | ClubUpdateWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput[] No
updateMany ClubUpdateManyWithWhereWithoutPerson_Club_chairmanToPersonInput | ClubUpdateManyWithWhereWithoutPerson_Club_chairmanToPersonInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput

Name Type Nullable
create ClubCreateWithoutPerson_Club_founderToPersonInput | ClubCreateWithoutPerson_Club_founderToPersonInput[] | ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput | ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput[] No
connectOrCreate ClubCreateOrConnectWithoutPerson_Club_founderToPersonInput | ClubCreateOrConnectWithoutPerson_Club_founderToPersonInput[] No
upsert ClubUpsertWithWhereUniqueWithoutPerson_Club_founderToPersonInput | ClubUpsertWithWhereUniqueWithoutPerson_Club_founderToPersonInput[] No
createMany ClubCreateManyPerson_Club_founderToPersonInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutPerson_Club_founderToPersonInput | ClubUpdateWithWhereUniqueWithoutPerson_Club_founderToPersonInput[] No
updateMany ClubUpdateManyWithWhereWithoutPerson_Club_founderToPersonInput | ClubUpdateManyWithWhereWithoutPerson_Club_founderToPersonInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput

Name Type Nullable
create ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput | ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput[] | ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput[] No
connectOrCreate ClubCreateOrConnectWithoutPerson_Club_vice_chairmanToPersonInput | ClubCreateOrConnectWithoutPerson_Club_vice_chairmanToPersonInput[] No
upsert ClubUpsertWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput | ClubUpsertWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput[] No
createMany ClubCreateManyPerson_Club_vice_chairmanToPersonInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput | ClubUpdateWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput[] No
updateMany ClubUpdateManyWithWhereWithoutPerson_Club_vice_chairmanToPersonInput | ClubUpdateManyWithWhereWithoutPerson_Club_vice_chairmanToPersonInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput

Name Type Nullable
create ContactCreateWithoutPerson_Contact_personToPersonInput | ContactCreateWithoutPerson_Contact_personToPersonInput[] | ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput | ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput[] No
connectOrCreate ContactCreateOrConnectWithoutPerson_Contact_personToPersonInput | ContactCreateOrConnectWithoutPerson_Contact_personToPersonInput[] No
upsert ContactUpsertWithWhereUniqueWithoutPerson_Contact_personToPersonInput | ContactUpsertWithWhereUniqueWithoutPerson_Contact_personToPersonInput[] No
createMany ContactCreateManyPerson_Contact_personToPersonInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutPerson_Contact_personToPersonInput | ContactUpdateWithWhereUniqueWithoutPerson_Contact_personToPersonInput[] No
updateMany ContactUpdateManyWithWhereWithoutPerson_Contact_personToPersonInput | ContactUpdateManyWithWhereWithoutPerson_Contact_personToPersonInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

DonationUpdateManyWithoutPersonNestedInput

Name Type Nullable
create DonationCreateWithoutPersonInput | DonationCreateWithoutPersonInput[] | DonationUncheckedCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput[] No
connectOrCreate DonationCreateOrConnectWithoutPersonInput | DonationCreateOrConnectWithoutPersonInput[] No
upsert DonationUpsertWithWhereUniqueWithoutPersonInput | DonationUpsertWithWhereUniqueWithoutPersonInput[] No
createMany DonationCreateManyPersonInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutPersonInput | DonationUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany DonationUpdateManyWithWhereWithoutPersonInput | DonationUpdateManyWithWhereWithoutPersonInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No

MemberUpdateManyWithoutPersonNestedInput

Name Type Nullable
create MemberCreateWithoutPersonInput | MemberCreateWithoutPersonInput[] | MemberUncheckedCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput[] No
connectOrCreate MemberCreateOrConnectWithoutPersonInput | MemberCreateOrConnectWithoutPersonInput[] No
upsert MemberUpsertWithWhereUniqueWithoutPersonInput | MemberUpsertWithWhereUniqueWithoutPersonInput[] No
createMany MemberCreateManyPersonInputEnvelope No
set MemberWhereUniqueInput | MemberWhereUniqueInput[] No
disconnect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
delete MemberWhereUniqueInput | MemberWhereUniqueInput[] No
connect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
update MemberUpdateWithWhereUniqueWithoutPersonInput | MemberUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany MemberUpdateManyWithWhereWithoutPersonInput | MemberUpdateManyWithWhereWithoutPersonInput[] No
deleteMany MemberScalarWhereInput | MemberScalarWhereInput[] No

OrganizationUpdateManyWithoutPersonNestedInput

Name Type Nullable
create OrganizationCreateWithoutPersonInput | OrganizationCreateWithoutPersonInput[] | OrganizationUncheckedCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutPersonInput | OrganizationCreateOrConnectWithoutPersonInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutPersonInput | OrganizationUpsertWithWhereUniqueWithoutPersonInput[] No
createMany OrganizationCreateManyPersonInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutPersonInput | OrganizationUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutPersonInput | OrganizationUpdateManyWithWhereWithoutPersonInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No




RequestUpdateManyWithoutPersonNestedInput

Name Type Nullable
create RequestCreateWithoutPersonInput | RequestCreateWithoutPersonInput[] | RequestUncheckedCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput[] No
connectOrCreate RequestCreateOrConnectWithoutPersonInput | RequestCreateOrConnectWithoutPersonInput[] No
upsert RequestUpsertWithWhereUniqueWithoutPersonInput | RequestUpsertWithWhereUniqueWithoutPersonInput[] No
createMany RequestCreateManyPersonInputEnvelope No
set RequestWhereUniqueInput | RequestWhereUniqueInput[] No
disconnect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
delete RequestWhereUniqueInput | RequestWhereUniqueInput[] No
connect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
update RequestUpdateWithWhereUniqueWithoutPersonInput | RequestUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany RequestUpdateManyWithWhereWithoutPersonInput | RequestUpdateManyWithWhereWithoutPersonInput[] No
deleteMany RequestScalarWhereInput | RequestScalarWhereInput[] No

SupportMessageUpdateManyWithoutPersonNestedInput

Name Type Nullable
create SupportMessageCreateWithoutPersonInput | SupportMessageCreateWithoutPersonInput[] | SupportMessageUncheckedCreateWithoutPersonInput | SupportMessageUncheckedCreateWithoutPersonInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutPersonInput | SupportMessageCreateOrConnectWithoutPersonInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutPersonInput | SupportMessageUpsertWithWhereUniqueWithoutPersonInput[] No
createMany SupportMessageCreateManyPersonInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutPersonInput | SupportMessageUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutPersonInput | SupportMessageUpdateManyWithWhereWithoutPersonInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput

Name Type Nullable
create TeamCreateWithoutPerson_Team_membersToPersonInput | TeamCreateWithoutPerson_Team_membersToPersonInput[] | TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput | TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput[] No
connectOrCreate TeamCreateOrConnectWithoutPerson_Team_membersToPersonInput | TeamCreateOrConnectWithoutPerson_Team_membersToPersonInput[] No
upsert TeamUpsertWithWhereUniqueWithoutPerson_Team_membersToPersonInput | TeamUpsertWithWhereUniqueWithoutPerson_Team_membersToPersonInput[] No
createMany TeamCreateManyPerson_Team_membersToPersonInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutPerson_Team_membersToPersonInput | TeamUpdateWithWhereUniqueWithoutPerson_Team_membersToPersonInput[] No
updateMany TeamUpdateManyWithWhereWithoutPerson_Team_membersToPersonInput | TeamUpdateManyWithWhereWithoutPerson_Team_membersToPersonInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

UserUpdateManyWithoutPersonNestedInput

Name Type Nullable
create UserCreateWithoutPersonInput | UserCreateWithoutPersonInput[] | UserUncheckedCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput[] No
connectOrCreate UserCreateOrConnectWithoutPersonInput | UserCreateOrConnectWithoutPersonInput[] No
upsert UserUpsertWithWhereUniqueWithoutPersonInput | UserUpsertWithWhereUniqueWithoutPersonInput[] No
createMany UserCreateManyPersonInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutPersonInput | UserUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany UserUpdateManyWithWhereWithoutPersonInput | UserUpdateManyWithWhereWithoutPersonInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

AmbulanceUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create AmbulanceCreateWithoutPersonInput | AmbulanceCreateWithoutPersonInput[] | AmbulanceUncheckedCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutPersonInput | AmbulanceCreateOrConnectWithoutPersonInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutPersonInput | AmbulanceUpsertWithWhereUniqueWithoutPersonInput[] No
createMany AmbulanceCreateManyPersonInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutPersonInput | AmbulanceUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutPersonInput | AmbulanceUpdateManyWithWhereWithoutPersonInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

BloodCenterUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create BloodCenterCreateWithoutPersonInput | BloodCenterCreateWithoutPersonInput[] | BloodCenterUncheckedCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput[] No
connectOrCreate BloodCenterCreateOrConnectWithoutPersonInput | BloodCenterCreateOrConnectWithoutPersonInput[] No
upsert BloodCenterUpsertWithWhereUniqueWithoutPersonInput | BloodCenterUpsertWithWhereUniqueWithoutPersonInput[] No
createMany BloodCenterCreateManyPersonInputEnvelope No
set BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
disconnect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
delete BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
connect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
update BloodCenterUpdateWithWhereUniqueWithoutPersonInput | BloodCenterUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany BloodCenterUpdateManyWithWhereWithoutPersonInput | BloodCenterUpdateManyWithWhereWithoutPersonInput[] No
deleteMany BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No

BloodDonationUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create BloodDonationCreateWithoutPersonInput | BloodDonationCreateWithoutPersonInput[] | BloodDonationUncheckedCreateWithoutPersonInput | BloodDonationUncheckedCreateWithoutPersonInput[] No
connectOrCreate BloodDonationCreateOrConnectWithoutPersonInput | BloodDonationCreateOrConnectWithoutPersonInput[] No
upsert BloodDonationUpsertWithWhereUniqueWithoutPersonInput | BloodDonationUpsertWithWhereUniqueWithoutPersonInput[] No
createMany BloodDonationCreateManyPersonInputEnvelope No
set BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
disconnect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
delete BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
connect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
update BloodDonationUpdateWithWhereUniqueWithoutPersonInput | BloodDonationUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany BloodDonationUpdateManyWithWhereWithoutPersonInput | BloodDonationUpdateManyWithWhereWithoutPersonInput[] No
deleteMany BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No

ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput

Name Type Nullable
create ClubCreateWithoutPerson_Club_chairmanToPersonInput | ClubCreateWithoutPerson_Club_chairmanToPersonInput[] | ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput[] No
connectOrCreate ClubCreateOrConnectWithoutPerson_Club_chairmanToPersonInput | ClubCreateOrConnectWithoutPerson_Club_chairmanToPersonInput[] No
upsert ClubUpsertWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput | ClubUpsertWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput[] No
createMany ClubCreateManyPerson_Club_chairmanToPersonInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput | ClubUpdateWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput[] No
updateMany ClubUpdateManyWithWhereWithoutPerson_Club_chairmanToPersonInput | ClubUpdateManyWithWhereWithoutPerson_Club_chairmanToPersonInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput

Name Type Nullable
create ClubCreateWithoutPerson_Club_founderToPersonInput | ClubCreateWithoutPerson_Club_founderToPersonInput[] | ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput | ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput[] No
connectOrCreate ClubCreateOrConnectWithoutPerson_Club_founderToPersonInput | ClubCreateOrConnectWithoutPerson_Club_founderToPersonInput[] No
upsert ClubUpsertWithWhereUniqueWithoutPerson_Club_founderToPersonInput | ClubUpsertWithWhereUniqueWithoutPerson_Club_founderToPersonInput[] No
createMany ClubCreateManyPerson_Club_founderToPersonInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutPerson_Club_founderToPersonInput | ClubUpdateWithWhereUniqueWithoutPerson_Club_founderToPersonInput[] No
updateMany ClubUpdateManyWithWhereWithoutPerson_Club_founderToPersonInput | ClubUpdateManyWithWhereWithoutPerson_Club_founderToPersonInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput

Name Type Nullable
create ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput | ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput[] | ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput[] No
connectOrCreate ClubCreateOrConnectWithoutPerson_Club_vice_chairmanToPersonInput | ClubCreateOrConnectWithoutPerson_Club_vice_chairmanToPersonInput[] No
upsert ClubUpsertWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput | ClubUpsertWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput[] No
createMany ClubCreateManyPerson_Club_vice_chairmanToPersonInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput | ClubUpdateWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput[] No
updateMany ClubUpdateManyWithWhereWithoutPerson_Club_vice_chairmanToPersonInput | ClubUpdateManyWithWhereWithoutPerson_Club_vice_chairmanToPersonInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput

Name Type Nullable
create ContactCreateWithoutPerson_Contact_personToPersonInput | ContactCreateWithoutPerson_Contact_personToPersonInput[] | ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput | ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput[] No
connectOrCreate ContactCreateOrConnectWithoutPerson_Contact_personToPersonInput | ContactCreateOrConnectWithoutPerson_Contact_personToPersonInput[] No
upsert ContactUpsertWithWhereUniqueWithoutPerson_Contact_personToPersonInput | ContactUpsertWithWhereUniqueWithoutPerson_Contact_personToPersonInput[] No
createMany ContactCreateManyPerson_Contact_personToPersonInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutPerson_Contact_personToPersonInput | ContactUpdateWithWhereUniqueWithoutPerson_Contact_personToPersonInput[] No
updateMany ContactUpdateManyWithWhereWithoutPerson_Contact_personToPersonInput | ContactUpdateManyWithWhereWithoutPerson_Contact_personToPersonInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

DonationUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create DonationCreateWithoutPersonInput | DonationCreateWithoutPersonInput[] | DonationUncheckedCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput[] No
connectOrCreate DonationCreateOrConnectWithoutPersonInput | DonationCreateOrConnectWithoutPersonInput[] No
upsert DonationUpsertWithWhereUniqueWithoutPersonInput | DonationUpsertWithWhereUniqueWithoutPersonInput[] No
createMany DonationCreateManyPersonInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutPersonInput | DonationUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany DonationUpdateManyWithWhereWithoutPersonInput | DonationUpdateManyWithWhereWithoutPersonInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No

MemberUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create MemberCreateWithoutPersonInput | MemberCreateWithoutPersonInput[] | MemberUncheckedCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput[] No
connectOrCreate MemberCreateOrConnectWithoutPersonInput | MemberCreateOrConnectWithoutPersonInput[] No
upsert MemberUpsertWithWhereUniqueWithoutPersonInput | MemberUpsertWithWhereUniqueWithoutPersonInput[] No
createMany MemberCreateManyPersonInputEnvelope No
set MemberWhereUniqueInput | MemberWhereUniqueInput[] No
disconnect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
delete MemberWhereUniqueInput | MemberWhereUniqueInput[] No
connect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
update MemberUpdateWithWhereUniqueWithoutPersonInput | MemberUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany MemberUpdateManyWithWhereWithoutPersonInput | MemberUpdateManyWithWhereWithoutPersonInput[] No
deleteMany MemberScalarWhereInput | MemberScalarWhereInput[] No

OrganizationUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create OrganizationCreateWithoutPersonInput | OrganizationCreateWithoutPersonInput[] | OrganizationUncheckedCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutPersonInput | OrganizationCreateOrConnectWithoutPersonInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutPersonInput | OrganizationUpsertWithWhereUniqueWithoutPersonInput[] No
createMany OrganizationCreateManyPersonInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutPersonInput | OrganizationUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutPersonInput | OrganizationUpdateManyWithWhereWithoutPersonInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No

RequestUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create RequestCreateWithoutPersonInput | RequestCreateWithoutPersonInput[] | RequestUncheckedCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput[] No
connectOrCreate RequestCreateOrConnectWithoutPersonInput | RequestCreateOrConnectWithoutPersonInput[] No
upsert RequestUpsertWithWhereUniqueWithoutPersonInput | RequestUpsertWithWhereUniqueWithoutPersonInput[] No
createMany RequestCreateManyPersonInputEnvelope No
set RequestWhereUniqueInput | RequestWhereUniqueInput[] No
disconnect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
delete RequestWhereUniqueInput | RequestWhereUniqueInput[] No
connect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
update RequestUpdateWithWhereUniqueWithoutPersonInput | RequestUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany RequestUpdateManyWithWhereWithoutPersonInput | RequestUpdateManyWithWhereWithoutPersonInput[] No
deleteMany RequestScalarWhereInput | RequestScalarWhereInput[] No

SupportMessageUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create SupportMessageCreateWithoutPersonInput | SupportMessageCreateWithoutPersonInput[] | SupportMessageUncheckedCreateWithoutPersonInput | SupportMessageUncheckedCreateWithoutPersonInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutPersonInput | SupportMessageCreateOrConnectWithoutPersonInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutPersonInput | SupportMessageUpsertWithWhereUniqueWithoutPersonInput[] No
createMany SupportMessageCreateManyPersonInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutPersonInput | SupportMessageUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutPersonInput | SupportMessageUpdateManyWithWhereWithoutPersonInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput

Name Type Nullable
create TeamCreateWithoutPerson_Team_membersToPersonInput | TeamCreateWithoutPerson_Team_membersToPersonInput[] | TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput | TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput[] No
connectOrCreate TeamCreateOrConnectWithoutPerson_Team_membersToPersonInput | TeamCreateOrConnectWithoutPerson_Team_membersToPersonInput[] No
upsert TeamUpsertWithWhereUniqueWithoutPerson_Team_membersToPersonInput | TeamUpsertWithWhereUniqueWithoutPerson_Team_membersToPersonInput[] No
createMany TeamCreateManyPerson_Team_membersToPersonInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutPerson_Team_membersToPersonInput | TeamUpdateWithWhereUniqueWithoutPerson_Team_membersToPersonInput[] No
updateMany TeamUpdateManyWithWhereWithoutPerson_Team_membersToPersonInput | TeamUpdateManyWithWhereWithoutPerson_Team_membersToPersonInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

UserUncheckedUpdateManyWithoutPersonNestedInput

Name Type Nullable
create UserCreateWithoutPersonInput | UserCreateWithoutPersonInput[] | UserUncheckedCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput[] No
connectOrCreate UserCreateOrConnectWithoutPersonInput | UserCreateOrConnectWithoutPersonInput[] No
upsert UserUpsertWithWhereUniqueWithoutPersonInput | UserUpsertWithWhereUniqueWithoutPersonInput[] No
createMany UserCreateManyPersonInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutPersonInput | UserUpdateWithWhereUniqueWithoutPersonInput[] No
updateMany UserUpdateManyWithWhereWithoutPersonInput | UserUpdateManyWithWhereWithoutPersonInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

MemberCreateNestedOneWithoutRequestInput

Name Type Nullable
create MemberCreateWithoutRequestInput | MemberUncheckedCreateWithoutRequestInput No
connectOrCreate MemberCreateOrConnectWithoutRequestInput No
connect MemberWhereUniqueInput No

PersonCreateNestedOneWithoutRequestInput

Name Type Nullable
create PersonCreateWithoutRequestInput | PersonUncheckedCreateWithoutRequestInput No
connectOrCreate PersonCreateOrConnectWithoutRequestInput No
connect PersonWhereUniqueInput No

VersionCreateNestedOneWithoutRequestInput

Name Type Nullable
create VersionCreateWithoutRequestInput | VersionUncheckedCreateWithoutRequestInput No
connectOrCreate VersionCreateOrConnectWithoutRequestInput No
connect VersionWhereUniqueInput No

EnumBloodGroupFieldUpdateOperationsInput

Name Type Nullable
set BloodGroup No




UserCreateNestedOneWithoutSecurityQuestionInput

Name Type Nullable
create UserCreateWithoutSecurityQuestionInput | UserUncheckedCreateWithoutSecurityQuestionInput No
connectOrCreate UserCreateOrConnectWithoutSecurityQuestionInput No
connect UserWhereUniqueInput No

VersionCreateNestedOneWithoutSecurityQuestionInput

Name Type Nullable
create VersionCreateWithoutSecurityQuestionInput | VersionUncheckedCreateWithoutSecurityQuestionInput No
connectOrCreate VersionCreateOrConnectWithoutSecurityQuestionInput No
connect VersionWhereUniqueInput No





UserSettingsUpdateManyWithoutSecurityQuestionNestedInput

Name Type Nullable
create UserSettingsCreateWithoutSecurityQuestionInput | UserSettingsCreateWithoutSecurityQuestionInput[] | UserSettingsUncheckedCreateWithoutSecurityQuestionInput | UserSettingsUncheckedCreateWithoutSecurityQuestionInput[] No
connectOrCreate UserSettingsCreateOrConnectWithoutSecurityQuestionInput | UserSettingsCreateOrConnectWithoutSecurityQuestionInput[] No
upsert UserSettingsUpsertWithWhereUniqueWithoutSecurityQuestionInput | UserSettingsUpsertWithWhereUniqueWithoutSecurityQuestionInput[] No
createMany UserSettingsCreateManySecurityQuestionInputEnvelope No
set UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
disconnect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
delete UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
connect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
update UserSettingsUpdateWithWhereUniqueWithoutSecurityQuestionInput | UserSettingsUpdateWithWhereUniqueWithoutSecurityQuestionInput[] No
updateMany UserSettingsUpdateManyWithWhereWithoutSecurityQuestionInput | UserSettingsUpdateManyWithWhereWithoutSecurityQuestionInput[] No
deleteMany UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No

UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput

Name Type Nullable
create UserSettingsCreateWithoutSecurityQuestionInput | UserSettingsCreateWithoutSecurityQuestionInput[] | UserSettingsUncheckedCreateWithoutSecurityQuestionInput | UserSettingsUncheckedCreateWithoutSecurityQuestionInput[] No
connectOrCreate UserSettingsCreateOrConnectWithoutSecurityQuestionInput | UserSettingsCreateOrConnectWithoutSecurityQuestionInput[] No
upsert UserSettingsUpsertWithWhereUniqueWithoutSecurityQuestionInput | UserSettingsUpsertWithWhereUniqueWithoutSecurityQuestionInput[] No
createMany UserSettingsCreateManySecurityQuestionInputEnvelope No
set UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
disconnect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
delete UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
connect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
update UserSettingsUpdateWithWhereUniqueWithoutSecurityQuestionInput | UserSettingsUpdateWithWhereUniqueWithoutSecurityQuestionInput[] No
updateMany UserSettingsUpdateManyWithWhereWithoutSecurityQuestionInput | UserSettingsUpdateManyWithWhereWithoutSecurityQuestionInput[] No
deleteMany UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No

VersionCreateNestedOneWithoutSocialMediaLinksInput

Name Type Nullable
create VersionCreateWithoutSocialMediaLinksInput | VersionUncheckedCreateWithoutSocialMediaLinksInput No
connectOrCreate VersionCreateOrConnectWithoutSocialMediaLinksInput No
connect VersionWhereUniqueInput No




UserUpdateManyWithoutSocialMediaLinksNestedInput

Name Type Nullable
create UserCreateWithoutSocialMediaLinksInput | UserCreateWithoutSocialMediaLinksInput[] | UserUncheckedCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput[] No
connectOrCreate UserCreateOrConnectWithoutSocialMediaLinksInput | UserCreateOrConnectWithoutSocialMediaLinksInput[] No
upsert UserUpsertWithWhereUniqueWithoutSocialMediaLinksInput | UserUpsertWithWhereUniqueWithoutSocialMediaLinksInput[] No
createMany UserCreateManySocialMediaLinksInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutSocialMediaLinksInput | UserUpdateWithWhereUniqueWithoutSocialMediaLinksInput[] No
updateMany UserUpdateManyWithWhereWithoutSocialMediaLinksInput | UserUpdateManyWithWhereWithoutSocialMediaLinksInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserUncheckedUpdateManyWithoutSocialMediaLinksNestedInput

Name Type Nullable
create UserCreateWithoutSocialMediaLinksInput | UserCreateWithoutSocialMediaLinksInput[] | UserUncheckedCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput[] No
connectOrCreate UserCreateOrConnectWithoutSocialMediaLinksInput | UserCreateOrConnectWithoutSocialMediaLinksInput[] No
upsert UserUpsertWithWhereUniqueWithoutSocialMediaLinksInput | UserUpsertWithWhereUniqueWithoutSocialMediaLinksInput[] No
createMany UserCreateManySocialMediaLinksInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutSocialMediaLinksInput | UserUpdateWithWhereUniqueWithoutSocialMediaLinksInput[] No
updateMany UserUpdateManyWithWhereWithoutSocialMediaLinksInput | UserUpdateManyWithWhereWithoutSocialMediaLinksInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

OrganizationCreateNestedOneWithoutSupportInput

Name Type Nullable
create OrganizationCreateWithoutSupportInput | OrganizationUncheckedCreateWithoutSupportInput No
connectOrCreate OrganizationCreateOrConnectWithoutSupportInput No
connect OrganizationWhereUniqueInput No

VersionCreateNestedOneWithoutSupportInput

Name Type Nullable
create VersionCreateWithoutSupportInput | VersionUncheckedCreateWithoutSupportInput No
connectOrCreate VersionCreateOrConnectWithoutSupportInput No
connect VersionWhereUniqueInput No





SupportMessageUpdateManyWithoutSupportNestedInput

Name Type Nullable
create SupportMessageCreateWithoutSupportInput | SupportMessageCreateWithoutSupportInput[] | SupportMessageUncheckedCreateWithoutSupportInput | SupportMessageUncheckedCreateWithoutSupportInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutSupportInput | SupportMessageCreateOrConnectWithoutSupportInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutSupportInput | SupportMessageUpsertWithWhereUniqueWithoutSupportInput[] No
createMany SupportMessageCreateManySupportInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutSupportInput | SupportMessageUpdateWithWhereUniqueWithoutSupportInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutSupportInput | SupportMessageUpdateManyWithWhereWithoutSupportInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

SupportMessageUncheckedUpdateManyWithoutSupportNestedInput

Name Type Nullable
create SupportMessageCreateWithoutSupportInput | SupportMessageCreateWithoutSupportInput[] | SupportMessageUncheckedCreateWithoutSupportInput | SupportMessageUncheckedCreateWithoutSupportInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutSupportInput | SupportMessageCreateOrConnectWithoutSupportInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutSupportInput | SupportMessageUpsertWithWhereUniqueWithoutSupportInput[] No
createMany SupportMessageCreateManySupportInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutSupportInput | SupportMessageUpdateWithWhereUniqueWithoutSupportInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutSupportInput | SupportMessageUpdateManyWithWhereWithoutSupportInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

PersonCreateNestedOneWithoutSupportMessageInput

Name Type Nullable
create PersonCreateWithoutSupportMessageInput | PersonUncheckedCreateWithoutSupportMessageInput No
connectOrCreate PersonCreateOrConnectWithoutSupportMessageInput No
connect PersonWhereUniqueInput No

OrganizationCreateNestedOneWithoutSupportMessageInput

Name Type Nullable
create OrganizationCreateWithoutSupportMessageInput | OrganizationUncheckedCreateWithoutSupportMessageInput No
connectOrCreate OrganizationCreateOrConnectWithoutSupportMessageInput No
connect OrganizationWhereUniqueInput No

SupportCreateNestedOneWithoutSupportMessageInput

Name Type Nullable
create SupportCreateWithoutSupportMessageInput | SupportUncheckedCreateWithoutSupportMessageInput No
connectOrCreate SupportCreateOrConnectWithoutSupportMessageInput No
connect SupportWhereUniqueInput No

VersionCreateNestedOneWithoutSupportMessageInput

Name Type Nullable
create VersionCreateWithoutSupportMessageInput | VersionUncheckedCreateWithoutSupportMessageInput No
connectOrCreate VersionCreateOrConnectWithoutSupportMessageInput No
connect VersionWhereUniqueInput No






PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput

Name Type Nullable
create PersonCreateWithoutTeam_Team_membersToPersonInput | PersonUncheckedCreateWithoutTeam_Team_membersToPersonInput No
connectOrCreate PersonCreateOrConnectWithoutTeam_Team_membersToPersonInput No
connect PersonWhereUniqueInput No

OrganizationCreateNestedOneWithoutTeamInput

Name Type Nullable
create OrganizationCreateWithoutTeamInput | OrganizationUncheckedCreateWithoutTeamInput No
connectOrCreate OrganizationCreateOrConnectWithoutTeamInput No
connect OrganizationWhereUniqueInput No

VersionCreateNestedOneWithoutTeamInput

Name Type Nullable
create VersionCreateWithoutTeamInput | VersionUncheckedCreateWithoutTeamInput No
connectOrCreate VersionCreateOrConnectWithoutTeamInput No
connect VersionWhereUniqueInput No


PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput

Name Type Nullable
create PersonCreateWithoutTeam_Person_teamIdToTeamInput | PersonCreateWithoutTeam_Person_teamIdToTeamInput[] | PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput | PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput[] No
connectOrCreate PersonCreateOrConnectWithoutTeam_Person_teamIdToTeamInput | PersonCreateOrConnectWithoutTeam_Person_teamIdToTeamInput[] No
upsert PersonUpsertWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput | PersonUpsertWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput[] No
createMany PersonCreateManyTeam_Person_teamIdToTeamInputEnvelope No
set PersonWhereUniqueInput | PersonWhereUniqueInput[] No
disconnect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
delete PersonWhereUniqueInput | PersonWhereUniqueInput[] No
connect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
update PersonUpdateWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput | PersonUpdateWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput[] No
updateMany PersonUpdateManyWithWhereWithoutTeam_Person_teamIdToTeamInput | PersonUpdateManyWithWhereWithoutTeam_Person_teamIdToTeamInput[] No
deleteMany PersonScalarWhereInput | PersonScalarWhereInput[] No




PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput

Name Type Nullable
create PersonCreateWithoutTeam_Person_teamIdToTeamInput | PersonCreateWithoutTeam_Person_teamIdToTeamInput[] | PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput | PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput[] No
connectOrCreate PersonCreateOrConnectWithoutTeam_Person_teamIdToTeamInput | PersonCreateOrConnectWithoutTeam_Person_teamIdToTeamInput[] No
upsert PersonUpsertWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput | PersonUpsertWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput[] No
createMany PersonCreateManyTeam_Person_teamIdToTeamInputEnvelope No
set PersonWhereUniqueInput | PersonWhereUniqueInput[] No
disconnect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
delete PersonWhereUniqueInput | PersonWhereUniqueInput[] No
connect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
update PersonUpdateWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput | PersonUpdateWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput[] No
updateMany PersonUpdateManyWithWhereWithoutTeam_Person_teamIdToTeamInput | PersonUpdateManyWithWhereWithoutTeam_Person_teamIdToTeamInput[] No
deleteMany PersonScalarWhereInput | PersonScalarWhereInput[] No

VersionCreateNestedOneWithoutTwoFactorAuthInput

Name Type Nullable
create VersionCreateWithoutTwoFactorAuthInput | VersionUncheckedCreateWithoutTwoFactorAuthInput No
connectOrCreate VersionCreateOrConnectWithoutTwoFactorAuthInput No
connect VersionWhereUniqueInput No




UserUpdateManyWithoutTwoFactorAuthNestedInput

Name Type Nullable
create UserCreateWithoutTwoFactorAuthInput | UserCreateWithoutTwoFactorAuthInput[] | UserUncheckedCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput[] No
connectOrCreate UserCreateOrConnectWithoutTwoFactorAuthInput | UserCreateOrConnectWithoutTwoFactorAuthInput[] No
upsert UserUpsertWithWhereUniqueWithoutTwoFactorAuthInput | UserUpsertWithWhereUniqueWithoutTwoFactorAuthInput[] No
createMany UserCreateManyTwoFactorAuthInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutTwoFactorAuthInput | UserUpdateWithWhereUniqueWithoutTwoFactorAuthInput[] No
updateMany UserUpdateManyWithWhereWithoutTwoFactorAuthInput | UserUpdateManyWithWhereWithoutTwoFactorAuthInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserUncheckedUpdateManyWithoutTwoFactorAuthNestedInput

Name Type Nullable
create UserCreateWithoutTwoFactorAuthInput | UserCreateWithoutTwoFactorAuthInput[] | UserUncheckedCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput[] No
connectOrCreate UserCreateOrConnectWithoutTwoFactorAuthInput | UserCreateOrConnectWithoutTwoFactorAuthInput[] No
upsert UserUpsertWithWhereUniqueWithoutTwoFactorAuthInput | UserUpsertWithWhereUniqueWithoutTwoFactorAuthInput[] No
createMany UserCreateManyTwoFactorAuthInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutTwoFactorAuthInput | UserUpdateWithWhereUniqueWithoutTwoFactorAuthInput[] No
updateMany UserUpdateManyWithWhereWithoutTwoFactorAuthInput | UserUpdateManyWithWhereWithoutTwoFactorAuthInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No


LoginRecordCreateNestedOneWithoutUserInput

Name Type Nullable
create LoginRecordCreateWithoutUserInput | LoginRecordUncheckedCreateWithoutUserInput No
connectOrCreate LoginRecordCreateOrConnectWithoutUserInput No
connect LoginRecordWhereUniqueInput No

PersonCreateNestedOneWithoutUserInput

Name Type Nullable
create PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput No
connectOrCreate PersonCreateOrConnectWithoutUserInput No
connect PersonWhereUniqueInput No

SocialMediaLinksCreateNestedOneWithoutUserInput

Name Type Nullable
create SocialMediaLinksCreateWithoutUserInput | SocialMediaLinksUncheckedCreateWithoutUserInput No
connectOrCreate SocialMediaLinksCreateOrConnectWithoutUserInput No
connect SocialMediaLinksWhereUniqueInput No

TwoFactorAuthCreateNestedOneWithoutUserInput

Name Type Nullable
create TwoFactorAuthCreateWithoutUserInput | TwoFactorAuthUncheckedCreateWithoutUserInput No
connectOrCreate TwoFactorAuthCreateOrConnectWithoutUserInput No
connect TwoFactorAuthWhereUniqueInput No

UserSettingsCreateNestedOneWithoutUserInput

Name Type Nullable
create UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput No
connectOrCreate UserSettingsCreateOrConnectWithoutUserInput No
connect UserSettingsWhereUniqueInput No

VersionCreateNestedOneWithoutUserInput

Name Type Nullable
create VersionCreateWithoutUserInput | VersionUncheckedCreateWithoutUserInput No
connectOrCreate VersionCreateOrConnectWithoutUserInput No
connect VersionWhereUniqueInput No




EnumAccountStatusFieldUpdateOperationsInput

Name Type Nullable
set AccountStatus No

SecurityQuestionUpdateManyWithoutUserNestedInput

Name Type Nullable
create SecurityQuestionCreateWithoutUserInput | SecurityQuestionCreateWithoutUserInput[] | SecurityQuestionUncheckedCreateWithoutUserInput | SecurityQuestionUncheckedCreateWithoutUserInput[] No
connectOrCreate SecurityQuestionCreateOrConnectWithoutUserInput | SecurityQuestionCreateOrConnectWithoutUserInput[] No
upsert SecurityQuestionUpsertWithWhereUniqueWithoutUserInput | SecurityQuestionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SecurityQuestionCreateManyUserInputEnvelope No
set SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
disconnect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
delete SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
connect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
update SecurityQuestionUpdateWithWhereUniqueWithoutUserInput | SecurityQuestionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SecurityQuestionUpdateManyWithWhereWithoutUserInput | SecurityQuestionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] No







UserRoleUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] No
connectOrCreate UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] No
upsert UserRoleUpsertWithWhereUniqueWithoutUserInput | UserRoleUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserRoleCreateManyUserInputEnvelope No
set UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
disconnect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
delete UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
connect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
update UserRoleUpdateWithWhereUniqueWithoutUserInput | UserRoleUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserRoleUpdateManyWithWhereWithoutUserInput | UserRoleUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserRoleScalarWhereInput | UserRoleScalarWhereInput[] No

SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create SecurityQuestionCreateWithoutUserInput | SecurityQuestionCreateWithoutUserInput[] | SecurityQuestionUncheckedCreateWithoutUserInput | SecurityQuestionUncheckedCreateWithoutUserInput[] No
connectOrCreate SecurityQuestionCreateOrConnectWithoutUserInput | SecurityQuestionCreateOrConnectWithoutUserInput[] No
upsert SecurityQuestionUpsertWithWhereUniqueWithoutUserInput | SecurityQuestionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SecurityQuestionCreateManyUserInputEnvelope No
set SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
disconnect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
delete SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
connect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
update SecurityQuestionUpdateWithWhereUniqueWithoutUserInput | SecurityQuestionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SecurityQuestionUpdateManyWithWhereWithoutUserInput | SecurityQuestionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] No

UserRoleUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] No
connectOrCreate UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] No
upsert UserRoleUpsertWithWhereUniqueWithoutUserInput | UserRoleUpsertWithWhereUniqueWithoutUserInput[] No
createMany UserRoleCreateManyUserInputEnvelope No
set UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
disconnect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
delete UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
connect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
update UserRoleUpdateWithWhereUniqueWithoutUserInput | UserRoleUpdateWithWhereUniqueWithoutUserInput[] No
updateMany UserRoleUpdateManyWithWhereWithoutUserInput | UserRoleUpdateManyWithWhereWithoutUserInput[] No
deleteMany UserRoleScalarWhereInput | UserRoleScalarWhereInput[] No

UserCreateNestedOneWithoutUserRoleInput

Name Type Nullable
create UserCreateWithoutUserRoleInput | UserUncheckedCreateWithoutUserRoleInput No
connectOrCreate UserCreateOrConnectWithoutUserRoleInput No
connect UserWhereUniqueInput No

VersionCreateNestedOneWithoutUserRoleInput

Name Type Nullable
create VersionCreateWithoutUserRoleInput | VersionUncheckedCreateWithoutUserRoleInput No
connectOrCreate VersionCreateOrConnectWithoutUserRoleInput No
connect VersionWhereUniqueInput No




LoginRecordCreateNestedOneWithoutUserSettingsInput

Name Type Nullable
create LoginRecordCreateWithoutUserSettingsInput | LoginRecordUncheckedCreateWithoutUserSettingsInput No
connectOrCreate LoginRecordCreateOrConnectWithoutUserSettingsInput No
connect LoginRecordWhereUniqueInput No


VersionCreateNestedOneWithoutUserSettingsInput

Name Type Nullable
create VersionCreateWithoutUserSettingsInput | VersionUncheckedCreateWithoutUserSettingsInput No
connectOrCreate VersionCreateOrConnectWithoutUserSettingsInput No
connect VersionWhereUniqueInput No


UserUpdateManyWithoutUserSettingsNestedInput

Name Type Nullable
create UserCreateWithoutUserSettingsInput | UserCreateWithoutUserSettingsInput[] | UserUncheckedCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput[] No
connectOrCreate UserCreateOrConnectWithoutUserSettingsInput | UserCreateOrConnectWithoutUserSettingsInput[] No
upsert UserUpsertWithWhereUniqueWithoutUserSettingsInput | UserUpsertWithWhereUniqueWithoutUserSettingsInput[] No
createMany UserCreateManyUserSettingsInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutUserSettingsInput | UserUpdateWithWhereUniqueWithoutUserSettingsInput[] No
updateMany UserUpdateManyWithWhereWithoutUserSettingsInput | UserUpdateManyWithWhereWithoutUserSettingsInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No




UserUncheckedUpdateManyWithoutUserSettingsNestedInput

Name Type Nullable
create UserCreateWithoutUserSettingsInput | UserCreateWithoutUserSettingsInput[] | UserUncheckedCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput[] No
connectOrCreate UserCreateOrConnectWithoutUserSettingsInput | UserCreateOrConnectWithoutUserSettingsInput[] No
upsert UserUpsertWithWhereUniqueWithoutUserSettingsInput | UserUpsertWithWhereUniqueWithoutUserSettingsInput[] No
createMany UserCreateManyUserSettingsInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutUserSettingsInput | UserUpdateWithWhereUniqueWithoutUserSettingsInput[] No
updateMany UserUpdateManyWithWhereWithoutUserSettingsInput | UserUpdateManyWithWhereWithoutUserSettingsInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No



















































AmbulanceUpdateManyWithoutVersionNestedInput

Name Type Nullable
create AmbulanceCreateWithoutVersionInput | AmbulanceCreateWithoutVersionInput[] | AmbulanceUncheckedCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutVersionInput | AmbulanceCreateOrConnectWithoutVersionInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutVersionInput | AmbulanceUpsertWithWhereUniqueWithoutVersionInput[] No
createMany AmbulanceCreateManyVersionInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutVersionInput | AmbulanceUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutVersionInput | AmbulanceUpdateManyWithWhereWithoutVersionInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

BloodCenterUpdateManyWithoutVersionNestedInput

Name Type Nullable
create BloodCenterCreateWithoutVersionInput | BloodCenterCreateWithoutVersionInput[] | BloodCenterUncheckedCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput[] No
connectOrCreate BloodCenterCreateOrConnectWithoutVersionInput | BloodCenterCreateOrConnectWithoutVersionInput[] No
upsert BloodCenterUpsertWithWhereUniqueWithoutVersionInput | BloodCenterUpsertWithWhereUniqueWithoutVersionInput[] No
createMany BloodCenterCreateManyVersionInputEnvelope No
set BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
disconnect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
delete BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
connect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
update BloodCenterUpdateWithWhereUniqueWithoutVersionInput | BloodCenterUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany BloodCenterUpdateManyWithWhereWithoutVersionInput | BloodCenterUpdateManyWithWhereWithoutVersionInput[] No
deleteMany BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No

BloodDonationUpdateManyWithoutVersionNestedInput

Name Type Nullable
create BloodDonationCreateWithoutVersionInput | BloodDonationCreateWithoutVersionInput[] | BloodDonationUncheckedCreateWithoutVersionInput | BloodDonationUncheckedCreateWithoutVersionInput[] No
connectOrCreate BloodDonationCreateOrConnectWithoutVersionInput | BloodDonationCreateOrConnectWithoutVersionInput[] No
upsert BloodDonationUpsertWithWhereUniqueWithoutVersionInput | BloodDonationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany BloodDonationCreateManyVersionInputEnvelope No
set BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
disconnect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
delete BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
connect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
update BloodDonationUpdateWithWhereUniqueWithoutVersionInput | BloodDonationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany BloodDonationUpdateManyWithWhereWithoutVersionInput | BloodDonationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No

ClubUpdateManyWithoutVersionNestedInput

Name Type Nullable
create ClubCreateWithoutVersionInput | ClubCreateWithoutVersionInput[] | ClubUncheckedCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput[] No
connectOrCreate ClubCreateOrConnectWithoutVersionInput | ClubCreateOrConnectWithoutVersionInput[] No
upsert ClubUpsertWithWhereUniqueWithoutVersionInput | ClubUpsertWithWhereUniqueWithoutVersionInput[] No
createMany ClubCreateManyVersionInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutVersionInput | ClubUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany ClubUpdateManyWithWhereWithoutVersionInput | ClubUpdateManyWithWhereWithoutVersionInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ContactUpdateManyWithoutVersionNestedInput

Name Type Nullable
create ContactCreateWithoutVersionInput | ContactCreateWithoutVersionInput[] | ContactUncheckedCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput[] No
connectOrCreate ContactCreateOrConnectWithoutVersionInput | ContactCreateOrConnectWithoutVersionInput[] No
upsert ContactUpsertWithWhereUniqueWithoutVersionInput | ContactUpsertWithWhereUniqueWithoutVersionInput[] No
createMany ContactCreateManyVersionInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutVersionInput | ContactUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany ContactUpdateManyWithWhereWithoutVersionInput | ContactUpdateManyWithWhereWithoutVersionInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

CountryUpdateManyWithoutVersionNestedInput

Name Type Nullable
create CountryCreateWithoutVersionInput | CountryCreateWithoutVersionInput[] | CountryUncheckedCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput[] No
connectOrCreate CountryCreateOrConnectWithoutVersionInput | CountryCreateOrConnectWithoutVersionInput[] No
upsert CountryUpsertWithWhereUniqueWithoutVersionInput | CountryUpsertWithWhereUniqueWithoutVersionInput[] No
createMany CountryCreateManyVersionInputEnvelope No
set CountryWhereUniqueInput | CountryWhereUniqueInput[] No
disconnect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
delete CountryWhereUniqueInput | CountryWhereUniqueInput[] No
connect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
update CountryUpdateWithWhereUniqueWithoutVersionInput | CountryUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany CountryUpdateManyWithWhereWithoutVersionInput | CountryUpdateManyWithWhereWithoutVersionInput[] No
deleteMany CountryScalarWhereInput | CountryScalarWhereInput[] No

DeviceUpdateManyWithoutVersionNestedInput

Name Type Nullable
create DeviceCreateWithoutVersionInput | DeviceCreateWithoutVersionInput[] | DeviceUncheckedCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput[] No
connectOrCreate DeviceCreateOrConnectWithoutVersionInput | DeviceCreateOrConnectWithoutVersionInput[] No
upsert DeviceUpsertWithWhereUniqueWithoutVersionInput | DeviceUpsertWithWhereUniqueWithoutVersionInput[] No
createMany DeviceCreateManyVersionInputEnvelope No
set DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
disconnect DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
delete DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
connect DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
update DeviceUpdateWithWhereUniqueWithoutVersionInput | DeviceUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany DeviceUpdateManyWithWhereWithoutVersionInput | DeviceUpdateManyWithWhereWithoutVersionInput[] No
deleteMany DeviceScalarWhereInput | DeviceScalarWhereInput[] No

DonationUpdateManyWithoutVersionNestedInput

Name Type Nullable
create DonationCreateWithoutVersionInput | DonationCreateWithoutVersionInput[] | DonationUncheckedCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput[] No
connectOrCreate DonationCreateOrConnectWithoutVersionInput | DonationCreateOrConnectWithoutVersionInput[] No
upsert DonationUpsertWithWhereUniqueWithoutVersionInput | DonationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany DonationCreateManyVersionInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutVersionInput | DonationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany DonationUpdateManyWithWhereWithoutVersionInput | DonationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No

HospitalUpdateManyWithoutVersionNestedInput

Name Type Nullable
create HospitalCreateWithoutVersionInput | HospitalCreateWithoutVersionInput[] | HospitalUncheckedCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput[] No
connectOrCreate HospitalCreateOrConnectWithoutVersionInput | HospitalCreateOrConnectWithoutVersionInput[] No
upsert HospitalUpsertWithWhereUniqueWithoutVersionInput | HospitalUpsertWithWhereUniqueWithoutVersionInput[] No
createMany HospitalCreateManyVersionInputEnvelope No
set HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
disconnect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
delete HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
connect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
update HospitalUpdateWithWhereUniqueWithoutVersionInput | HospitalUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany HospitalUpdateManyWithWhereWithoutVersionInput | HospitalUpdateManyWithWhereWithoutVersionInput[] No
deleteMany HospitalScalarWhereInput | HospitalScalarWhereInput[] No

LocationUpdateManyWithoutVersionNestedInput

Name Type Nullable
create LocationCreateWithoutVersionInput | LocationCreateWithoutVersionInput[] | LocationUncheckedCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput[] No
connectOrCreate LocationCreateOrConnectWithoutVersionInput | LocationCreateOrConnectWithoutVersionInput[] No
upsert LocationUpsertWithWhereUniqueWithoutVersionInput | LocationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany LocationCreateManyVersionInputEnvelope No
set LocationWhereUniqueInput | LocationWhereUniqueInput[] No
disconnect LocationWhereUniqueInput | LocationWhereUniqueInput[] No
delete LocationWhereUniqueInput | LocationWhereUniqueInput[] No
connect LocationWhereUniqueInput | LocationWhereUniqueInput[] No
update LocationUpdateWithWhereUniqueWithoutVersionInput | LocationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany LocationUpdateManyWithWhereWithoutVersionInput | LocationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany LocationScalarWhereInput | LocationScalarWhereInput[] No

LoginRecordUpdateManyWithoutVersionNestedInput

Name Type Nullable
create LoginRecordCreateWithoutVersionInput | LoginRecordCreateWithoutVersionInput[] | LoginRecordUncheckedCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput[] No
connectOrCreate LoginRecordCreateOrConnectWithoutVersionInput | LoginRecordCreateOrConnectWithoutVersionInput[] No
upsert LoginRecordUpsertWithWhereUniqueWithoutVersionInput | LoginRecordUpsertWithWhereUniqueWithoutVersionInput[] No
createMany LoginRecordCreateManyVersionInputEnvelope No
set LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
disconnect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
delete LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
connect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
update LoginRecordUpdateWithWhereUniqueWithoutVersionInput | LoginRecordUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany LoginRecordUpdateManyWithWhereWithoutVersionInput | LoginRecordUpdateManyWithWhereWithoutVersionInput[] No
deleteMany LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] No

MemberUpdateManyWithoutVersionNestedInput

Name Type Nullable
create MemberCreateWithoutVersionInput | MemberCreateWithoutVersionInput[] | MemberUncheckedCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput[] No
connectOrCreate MemberCreateOrConnectWithoutVersionInput | MemberCreateOrConnectWithoutVersionInput[] No
upsert MemberUpsertWithWhereUniqueWithoutVersionInput | MemberUpsertWithWhereUniqueWithoutVersionInput[] No
createMany MemberCreateManyVersionInputEnvelope No
set MemberWhereUniqueInput | MemberWhereUniqueInput[] No
disconnect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
delete MemberWhereUniqueInput | MemberWhereUniqueInput[] No
connect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
update MemberUpdateWithWhereUniqueWithoutVersionInput | MemberUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany MemberUpdateManyWithWhereWithoutVersionInput | MemberUpdateManyWithWhereWithoutVersionInput[] No
deleteMany MemberScalarWhereInput | MemberScalarWhereInput[] No

OrganizationUpdateManyWithoutVersionNestedInput

Name Type Nullable
create OrganizationCreateWithoutVersionInput | OrganizationCreateWithoutVersionInput[] | OrganizationUncheckedCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutVersionInput | OrganizationCreateOrConnectWithoutVersionInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutVersionInput | OrganizationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany OrganizationCreateManyVersionInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutVersionInput | OrganizationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutVersionInput | OrganizationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No

OrganizationSettingsUpdateManyWithoutVersionNestedInput

Name Type Nullable
create OrganizationSettingsCreateWithoutVersionInput | OrganizationSettingsCreateWithoutVersionInput[] | OrganizationSettingsUncheckedCreateWithoutVersionInput | OrganizationSettingsUncheckedCreateWithoutVersionInput[] No
connectOrCreate OrganizationSettingsCreateOrConnectWithoutVersionInput | OrganizationSettingsCreateOrConnectWithoutVersionInput[] No
upsert OrganizationSettingsUpsertWithWhereUniqueWithoutVersionInput | OrganizationSettingsUpsertWithWhereUniqueWithoutVersionInput[] No
createMany OrganizationSettingsCreateManyVersionInputEnvelope No
set OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
disconnect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
delete OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
connect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
update OrganizationSettingsUpdateWithWhereUniqueWithoutVersionInput | OrganizationSettingsUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany OrganizationSettingsUpdateManyWithWhereWithoutVersionInput | OrganizationSettingsUpdateManyWithWhereWithoutVersionInput[] No
deleteMany OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] No

PersonUpdateManyWithoutVersionNestedInput

Name Type Nullable
create PersonCreateWithoutVersionInput | PersonCreateWithoutVersionInput[] | PersonUncheckedCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput[] No
connectOrCreate PersonCreateOrConnectWithoutVersionInput | PersonCreateOrConnectWithoutVersionInput[] No
upsert PersonUpsertWithWhereUniqueWithoutVersionInput | PersonUpsertWithWhereUniqueWithoutVersionInput[] No
createMany PersonCreateManyVersionInputEnvelope No
set PersonWhereUniqueInput | PersonWhereUniqueInput[] No
disconnect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
delete PersonWhereUniqueInput | PersonWhereUniqueInput[] No
connect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
update PersonUpdateWithWhereUniqueWithoutVersionInput | PersonUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany PersonUpdateManyWithWhereWithoutVersionInput | PersonUpdateManyWithWhereWithoutVersionInput[] No
deleteMany PersonScalarWhereInput | PersonScalarWhereInput[] No

RequestUpdateManyWithoutVersionNestedInput

Name Type Nullable
create RequestCreateWithoutVersionInput | RequestCreateWithoutVersionInput[] | RequestUncheckedCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput[] No
connectOrCreate RequestCreateOrConnectWithoutVersionInput | RequestCreateOrConnectWithoutVersionInput[] No
upsert RequestUpsertWithWhereUniqueWithoutVersionInput | RequestUpsertWithWhereUniqueWithoutVersionInput[] No
createMany RequestCreateManyVersionInputEnvelope No
set RequestWhereUniqueInput | RequestWhereUniqueInput[] No
disconnect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
delete RequestWhereUniqueInput | RequestWhereUniqueInput[] No
connect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
update RequestUpdateWithWhereUniqueWithoutVersionInput | RequestUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany RequestUpdateManyWithWhereWithoutVersionInput | RequestUpdateManyWithWhereWithoutVersionInput[] No
deleteMany RequestScalarWhereInput | RequestScalarWhereInput[] No

SecurityQuestionUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SecurityQuestionCreateWithoutVersionInput | SecurityQuestionCreateWithoutVersionInput[] | SecurityQuestionUncheckedCreateWithoutVersionInput | SecurityQuestionUncheckedCreateWithoutVersionInput[] No
connectOrCreate SecurityQuestionCreateOrConnectWithoutVersionInput | SecurityQuestionCreateOrConnectWithoutVersionInput[] No
upsert SecurityQuestionUpsertWithWhereUniqueWithoutVersionInput | SecurityQuestionUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SecurityQuestionCreateManyVersionInputEnvelope No
set SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
disconnect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
delete SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
connect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
update SecurityQuestionUpdateWithWhereUniqueWithoutVersionInput | SecurityQuestionUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SecurityQuestionUpdateManyWithWhereWithoutVersionInput | SecurityQuestionUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] No

SocialMediaLinksUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SocialMediaLinksCreateWithoutVersionInput | SocialMediaLinksCreateWithoutVersionInput[] | SocialMediaLinksUncheckedCreateWithoutVersionInput | SocialMediaLinksUncheckedCreateWithoutVersionInput[] No
connectOrCreate SocialMediaLinksCreateOrConnectWithoutVersionInput | SocialMediaLinksCreateOrConnectWithoutVersionInput[] No
upsert SocialMediaLinksUpsertWithWhereUniqueWithoutVersionInput | SocialMediaLinksUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SocialMediaLinksCreateManyVersionInputEnvelope No
set SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
disconnect SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
delete SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
connect SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
update SocialMediaLinksUpdateWithWhereUniqueWithoutVersionInput | SocialMediaLinksUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SocialMediaLinksUpdateManyWithWhereWithoutVersionInput | SocialMediaLinksUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SocialMediaLinksScalarWhereInput | SocialMediaLinksScalarWhereInput[] No

SupportUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SupportCreateWithoutVersionInput | SupportCreateWithoutVersionInput[] | SupportUncheckedCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput[] No
connectOrCreate SupportCreateOrConnectWithoutVersionInput | SupportCreateOrConnectWithoutVersionInput[] No
upsert SupportUpsertWithWhereUniqueWithoutVersionInput | SupportUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SupportCreateManyVersionInputEnvelope No
set SupportWhereUniqueInput | SupportWhereUniqueInput[] No
disconnect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
delete SupportWhereUniqueInput | SupportWhereUniqueInput[] No
connect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
update SupportUpdateWithWhereUniqueWithoutVersionInput | SupportUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SupportUpdateManyWithWhereWithoutVersionInput | SupportUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SupportScalarWhereInput | SupportScalarWhereInput[] No

SupportMessageUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SupportMessageCreateWithoutVersionInput | SupportMessageCreateWithoutVersionInput[] | SupportMessageUncheckedCreateWithoutVersionInput | SupportMessageUncheckedCreateWithoutVersionInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutVersionInput | SupportMessageCreateOrConnectWithoutVersionInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutVersionInput | SupportMessageUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SupportMessageCreateManyVersionInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutVersionInput | SupportMessageUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutVersionInput | SupportMessageUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

TeamUpdateManyWithoutVersionNestedInput

Name Type Nullable
create TeamCreateWithoutVersionInput | TeamCreateWithoutVersionInput[] | TeamUncheckedCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput[] No
connectOrCreate TeamCreateOrConnectWithoutVersionInput | TeamCreateOrConnectWithoutVersionInput[] No
upsert TeamUpsertWithWhereUniqueWithoutVersionInput | TeamUpsertWithWhereUniqueWithoutVersionInput[] No
createMany TeamCreateManyVersionInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutVersionInput | TeamUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany TeamUpdateManyWithWhereWithoutVersionInput | TeamUpdateManyWithWhereWithoutVersionInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TwoFactorAuthUpdateManyWithoutVersionNestedInput

Name Type Nullable
create TwoFactorAuthCreateWithoutVersionInput | TwoFactorAuthCreateWithoutVersionInput[] | TwoFactorAuthUncheckedCreateWithoutVersionInput | TwoFactorAuthUncheckedCreateWithoutVersionInput[] No
connectOrCreate TwoFactorAuthCreateOrConnectWithoutVersionInput | TwoFactorAuthCreateOrConnectWithoutVersionInput[] No
upsert TwoFactorAuthUpsertWithWhereUniqueWithoutVersionInput | TwoFactorAuthUpsertWithWhereUniqueWithoutVersionInput[] No
createMany TwoFactorAuthCreateManyVersionInputEnvelope No
set TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
disconnect TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
delete TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
connect TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
update TwoFactorAuthUpdateWithWhereUniqueWithoutVersionInput | TwoFactorAuthUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany TwoFactorAuthUpdateManyWithWhereWithoutVersionInput | TwoFactorAuthUpdateManyWithWhereWithoutVersionInput[] No
deleteMany TwoFactorAuthScalarWhereInput | TwoFactorAuthScalarWhereInput[] No

UserUpdateManyWithoutVersionNestedInput

Name Type Nullable
create UserCreateWithoutVersionInput | UserCreateWithoutVersionInput[] | UserUncheckedCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput[] No
connectOrCreate UserCreateOrConnectWithoutVersionInput | UserCreateOrConnectWithoutVersionInput[] No
upsert UserUpsertWithWhereUniqueWithoutVersionInput | UserUpsertWithWhereUniqueWithoutVersionInput[] No
createMany UserCreateManyVersionInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutVersionInput | UserUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany UserUpdateManyWithWhereWithoutVersionInput | UserUpdateManyWithWhereWithoutVersionInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserRoleUpdateManyWithoutVersionNestedInput

Name Type Nullable
create UserRoleCreateWithoutVersionInput | UserRoleCreateWithoutVersionInput[] | UserRoleUncheckedCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput[] No
connectOrCreate UserRoleCreateOrConnectWithoutVersionInput | UserRoleCreateOrConnectWithoutVersionInput[] No
upsert UserRoleUpsertWithWhereUniqueWithoutVersionInput | UserRoleUpsertWithWhereUniqueWithoutVersionInput[] No
createMany UserRoleCreateManyVersionInputEnvelope No
set UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
disconnect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
delete UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
connect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
update UserRoleUpdateWithWhereUniqueWithoutVersionInput | UserRoleUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany UserRoleUpdateManyWithWhereWithoutVersionInput | UserRoleUpdateManyWithWhereWithoutVersionInput[] No
deleteMany UserRoleScalarWhereInput | UserRoleScalarWhereInput[] No

UserSettingsUpdateManyWithoutVersionNestedInput

Name Type Nullable
create UserSettingsCreateWithoutVersionInput | UserSettingsCreateWithoutVersionInput[] | UserSettingsUncheckedCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput[] No
connectOrCreate UserSettingsCreateOrConnectWithoutVersionInput | UserSettingsCreateOrConnectWithoutVersionInput[] No
upsert UserSettingsUpsertWithWhereUniqueWithoutVersionInput | UserSettingsUpsertWithWhereUniqueWithoutVersionInput[] No
createMany UserSettingsCreateManyVersionInputEnvelope No
set UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
disconnect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
delete UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
connect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
update UserSettingsUpdateWithWhereUniqueWithoutVersionInput | UserSettingsUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany UserSettingsUpdateManyWithWhereWithoutVersionInput | UserSettingsUpdateManyWithWhereWithoutVersionInput[] No
deleteMany UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No

AmbulanceUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create AmbulanceCreateWithoutVersionInput | AmbulanceCreateWithoutVersionInput[] | AmbulanceUncheckedCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput[] No
connectOrCreate AmbulanceCreateOrConnectWithoutVersionInput | AmbulanceCreateOrConnectWithoutVersionInput[] No
upsert AmbulanceUpsertWithWhereUniqueWithoutVersionInput | AmbulanceUpsertWithWhereUniqueWithoutVersionInput[] No
createMany AmbulanceCreateManyVersionInputEnvelope No
set AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
disconnect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
delete AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
connect AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] No
update AmbulanceUpdateWithWhereUniqueWithoutVersionInput | AmbulanceUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany AmbulanceUpdateManyWithWhereWithoutVersionInput | AmbulanceUpdateManyWithWhereWithoutVersionInput[] No
deleteMany AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No

BloodCenterUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create BloodCenterCreateWithoutVersionInput | BloodCenterCreateWithoutVersionInput[] | BloodCenterUncheckedCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput[] No
connectOrCreate BloodCenterCreateOrConnectWithoutVersionInput | BloodCenterCreateOrConnectWithoutVersionInput[] No
upsert BloodCenterUpsertWithWhereUniqueWithoutVersionInput | BloodCenterUpsertWithWhereUniqueWithoutVersionInput[] No
createMany BloodCenterCreateManyVersionInputEnvelope No
set BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
disconnect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
delete BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
connect BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] No
update BloodCenterUpdateWithWhereUniqueWithoutVersionInput | BloodCenterUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany BloodCenterUpdateManyWithWhereWithoutVersionInput | BloodCenterUpdateManyWithWhereWithoutVersionInput[] No
deleteMany BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No

BloodDonationUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create BloodDonationCreateWithoutVersionInput | BloodDonationCreateWithoutVersionInput[] | BloodDonationUncheckedCreateWithoutVersionInput | BloodDonationUncheckedCreateWithoutVersionInput[] No
connectOrCreate BloodDonationCreateOrConnectWithoutVersionInput | BloodDonationCreateOrConnectWithoutVersionInput[] No
upsert BloodDonationUpsertWithWhereUniqueWithoutVersionInput | BloodDonationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany BloodDonationCreateManyVersionInputEnvelope No
set BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
disconnect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
delete BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
connect BloodDonationWhereUniqueInput | BloodDonationWhereUniqueInput[] No
update BloodDonationUpdateWithWhereUniqueWithoutVersionInput | BloodDonationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany BloodDonationUpdateManyWithWhereWithoutVersionInput | BloodDonationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No

ClubUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create ClubCreateWithoutVersionInput | ClubCreateWithoutVersionInput[] | ClubUncheckedCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput[] No
connectOrCreate ClubCreateOrConnectWithoutVersionInput | ClubCreateOrConnectWithoutVersionInput[] No
upsert ClubUpsertWithWhereUniqueWithoutVersionInput | ClubUpsertWithWhereUniqueWithoutVersionInput[] No
createMany ClubCreateManyVersionInputEnvelope No
set ClubWhereUniqueInput | ClubWhereUniqueInput[] No
disconnect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
delete ClubWhereUniqueInput | ClubWhereUniqueInput[] No
connect ClubWhereUniqueInput | ClubWhereUniqueInput[] No
update ClubUpdateWithWhereUniqueWithoutVersionInput | ClubUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany ClubUpdateManyWithWhereWithoutVersionInput | ClubUpdateManyWithWhereWithoutVersionInput[] No
deleteMany ClubScalarWhereInput | ClubScalarWhereInput[] No

ContactUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create ContactCreateWithoutVersionInput | ContactCreateWithoutVersionInput[] | ContactUncheckedCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput[] No
connectOrCreate ContactCreateOrConnectWithoutVersionInput | ContactCreateOrConnectWithoutVersionInput[] No
upsert ContactUpsertWithWhereUniqueWithoutVersionInput | ContactUpsertWithWhereUniqueWithoutVersionInput[] No
createMany ContactCreateManyVersionInputEnvelope No
set ContactWhereUniqueInput | ContactWhereUniqueInput[] No
disconnect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
delete ContactWhereUniqueInput | ContactWhereUniqueInput[] No
connect ContactWhereUniqueInput | ContactWhereUniqueInput[] No
update ContactUpdateWithWhereUniqueWithoutVersionInput | ContactUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany ContactUpdateManyWithWhereWithoutVersionInput | ContactUpdateManyWithWhereWithoutVersionInput[] No
deleteMany ContactScalarWhereInput | ContactScalarWhereInput[] No

CountryUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create CountryCreateWithoutVersionInput | CountryCreateWithoutVersionInput[] | CountryUncheckedCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput[] No
connectOrCreate CountryCreateOrConnectWithoutVersionInput | CountryCreateOrConnectWithoutVersionInput[] No
upsert CountryUpsertWithWhereUniqueWithoutVersionInput | CountryUpsertWithWhereUniqueWithoutVersionInput[] No
createMany CountryCreateManyVersionInputEnvelope No
set CountryWhereUniqueInput | CountryWhereUniqueInput[] No
disconnect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
delete CountryWhereUniqueInput | CountryWhereUniqueInput[] No
connect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
update CountryUpdateWithWhereUniqueWithoutVersionInput | CountryUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany CountryUpdateManyWithWhereWithoutVersionInput | CountryUpdateManyWithWhereWithoutVersionInput[] No
deleteMany CountryScalarWhereInput | CountryScalarWhereInput[] No

DeviceUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create DeviceCreateWithoutVersionInput | DeviceCreateWithoutVersionInput[] | DeviceUncheckedCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput[] No
connectOrCreate DeviceCreateOrConnectWithoutVersionInput | DeviceCreateOrConnectWithoutVersionInput[] No
upsert DeviceUpsertWithWhereUniqueWithoutVersionInput | DeviceUpsertWithWhereUniqueWithoutVersionInput[] No
createMany DeviceCreateManyVersionInputEnvelope No
set DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
disconnect DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
delete DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
connect DeviceWhereUniqueInput | DeviceWhereUniqueInput[] No
update DeviceUpdateWithWhereUniqueWithoutVersionInput | DeviceUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany DeviceUpdateManyWithWhereWithoutVersionInput | DeviceUpdateManyWithWhereWithoutVersionInput[] No
deleteMany DeviceScalarWhereInput | DeviceScalarWhereInput[] No

DonationUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create DonationCreateWithoutVersionInput | DonationCreateWithoutVersionInput[] | DonationUncheckedCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput[] No
connectOrCreate DonationCreateOrConnectWithoutVersionInput | DonationCreateOrConnectWithoutVersionInput[] No
upsert DonationUpsertWithWhereUniqueWithoutVersionInput | DonationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany DonationCreateManyVersionInputEnvelope No
set DonationWhereUniqueInput | DonationWhereUniqueInput[] No
disconnect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
delete DonationWhereUniqueInput | DonationWhereUniqueInput[] No
connect DonationWhereUniqueInput | DonationWhereUniqueInput[] No
update DonationUpdateWithWhereUniqueWithoutVersionInput | DonationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany DonationUpdateManyWithWhereWithoutVersionInput | DonationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany DonationScalarWhereInput | DonationScalarWhereInput[] No

HospitalUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create HospitalCreateWithoutVersionInput | HospitalCreateWithoutVersionInput[] | HospitalUncheckedCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput[] No
connectOrCreate HospitalCreateOrConnectWithoutVersionInput | HospitalCreateOrConnectWithoutVersionInput[] No
upsert HospitalUpsertWithWhereUniqueWithoutVersionInput | HospitalUpsertWithWhereUniqueWithoutVersionInput[] No
createMany HospitalCreateManyVersionInputEnvelope No
set HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
disconnect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
delete HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
connect HospitalWhereUniqueInput | HospitalWhereUniqueInput[] No
update HospitalUpdateWithWhereUniqueWithoutVersionInput | HospitalUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany HospitalUpdateManyWithWhereWithoutVersionInput | HospitalUpdateManyWithWhereWithoutVersionInput[] No
deleteMany HospitalScalarWhereInput | HospitalScalarWhereInput[] No

LocationUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create LocationCreateWithoutVersionInput | LocationCreateWithoutVersionInput[] | LocationUncheckedCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput[] No
connectOrCreate LocationCreateOrConnectWithoutVersionInput | LocationCreateOrConnectWithoutVersionInput[] No
upsert LocationUpsertWithWhereUniqueWithoutVersionInput | LocationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany LocationCreateManyVersionInputEnvelope No
set LocationWhereUniqueInput | LocationWhereUniqueInput[] No
disconnect LocationWhereUniqueInput | LocationWhereUniqueInput[] No
delete LocationWhereUniqueInput | LocationWhereUniqueInput[] No
connect LocationWhereUniqueInput | LocationWhereUniqueInput[] No
update LocationUpdateWithWhereUniqueWithoutVersionInput | LocationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany LocationUpdateManyWithWhereWithoutVersionInput | LocationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany LocationScalarWhereInput | LocationScalarWhereInput[] No

LoginRecordUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create LoginRecordCreateWithoutVersionInput | LoginRecordCreateWithoutVersionInput[] | LoginRecordUncheckedCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput[] No
connectOrCreate LoginRecordCreateOrConnectWithoutVersionInput | LoginRecordCreateOrConnectWithoutVersionInput[] No
upsert LoginRecordUpsertWithWhereUniqueWithoutVersionInput | LoginRecordUpsertWithWhereUniqueWithoutVersionInput[] No
createMany LoginRecordCreateManyVersionInputEnvelope No
set LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
disconnect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
delete LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
connect LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] No
update LoginRecordUpdateWithWhereUniqueWithoutVersionInput | LoginRecordUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany LoginRecordUpdateManyWithWhereWithoutVersionInput | LoginRecordUpdateManyWithWhereWithoutVersionInput[] No
deleteMany LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] No

MemberUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create MemberCreateWithoutVersionInput | MemberCreateWithoutVersionInput[] | MemberUncheckedCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput[] No
connectOrCreate MemberCreateOrConnectWithoutVersionInput | MemberCreateOrConnectWithoutVersionInput[] No
upsert MemberUpsertWithWhereUniqueWithoutVersionInput | MemberUpsertWithWhereUniqueWithoutVersionInput[] No
createMany MemberCreateManyVersionInputEnvelope No
set MemberWhereUniqueInput | MemberWhereUniqueInput[] No
disconnect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
delete MemberWhereUniqueInput | MemberWhereUniqueInput[] No
connect MemberWhereUniqueInput | MemberWhereUniqueInput[] No
update MemberUpdateWithWhereUniqueWithoutVersionInput | MemberUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany MemberUpdateManyWithWhereWithoutVersionInput | MemberUpdateManyWithWhereWithoutVersionInput[] No
deleteMany MemberScalarWhereInput | MemberScalarWhereInput[] No

OrganizationUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create OrganizationCreateWithoutVersionInput | OrganizationCreateWithoutVersionInput[] | OrganizationUncheckedCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput[] No
connectOrCreate OrganizationCreateOrConnectWithoutVersionInput | OrganizationCreateOrConnectWithoutVersionInput[] No
upsert OrganizationUpsertWithWhereUniqueWithoutVersionInput | OrganizationUpsertWithWhereUniqueWithoutVersionInput[] No
createMany OrganizationCreateManyVersionInputEnvelope No
set OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
disconnect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
delete OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
connect OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] No
update OrganizationUpdateWithWhereUniqueWithoutVersionInput | OrganizationUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany OrganizationUpdateManyWithWhereWithoutVersionInput | OrganizationUpdateManyWithWhereWithoutVersionInput[] No
deleteMany OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No

OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create OrganizationSettingsCreateWithoutVersionInput | OrganizationSettingsCreateWithoutVersionInput[] | OrganizationSettingsUncheckedCreateWithoutVersionInput | OrganizationSettingsUncheckedCreateWithoutVersionInput[] No
connectOrCreate OrganizationSettingsCreateOrConnectWithoutVersionInput | OrganizationSettingsCreateOrConnectWithoutVersionInput[] No
upsert OrganizationSettingsUpsertWithWhereUniqueWithoutVersionInput | OrganizationSettingsUpsertWithWhereUniqueWithoutVersionInput[] No
createMany OrganizationSettingsCreateManyVersionInputEnvelope No
set OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
disconnect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
delete OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
connect OrganizationSettingsWhereUniqueInput | OrganizationSettingsWhereUniqueInput[] No
update OrganizationSettingsUpdateWithWhereUniqueWithoutVersionInput | OrganizationSettingsUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany OrganizationSettingsUpdateManyWithWhereWithoutVersionInput | OrganizationSettingsUpdateManyWithWhereWithoutVersionInput[] No
deleteMany OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] No

PersonUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create PersonCreateWithoutVersionInput | PersonCreateWithoutVersionInput[] | PersonUncheckedCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput[] No
connectOrCreate PersonCreateOrConnectWithoutVersionInput | PersonCreateOrConnectWithoutVersionInput[] No
upsert PersonUpsertWithWhereUniqueWithoutVersionInput | PersonUpsertWithWhereUniqueWithoutVersionInput[] No
createMany PersonCreateManyVersionInputEnvelope No
set PersonWhereUniqueInput | PersonWhereUniqueInput[] No
disconnect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
delete PersonWhereUniqueInput | PersonWhereUniqueInput[] No
connect PersonWhereUniqueInput | PersonWhereUniqueInput[] No
update PersonUpdateWithWhereUniqueWithoutVersionInput | PersonUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany PersonUpdateManyWithWhereWithoutVersionInput | PersonUpdateManyWithWhereWithoutVersionInput[] No
deleteMany PersonScalarWhereInput | PersonScalarWhereInput[] No

RequestUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create RequestCreateWithoutVersionInput | RequestCreateWithoutVersionInput[] | RequestUncheckedCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput[] No
connectOrCreate RequestCreateOrConnectWithoutVersionInput | RequestCreateOrConnectWithoutVersionInput[] No
upsert RequestUpsertWithWhereUniqueWithoutVersionInput | RequestUpsertWithWhereUniqueWithoutVersionInput[] No
createMany RequestCreateManyVersionInputEnvelope No
set RequestWhereUniqueInput | RequestWhereUniqueInput[] No
disconnect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
delete RequestWhereUniqueInput | RequestWhereUniqueInput[] No
connect RequestWhereUniqueInput | RequestWhereUniqueInput[] No
update RequestUpdateWithWhereUniqueWithoutVersionInput | RequestUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany RequestUpdateManyWithWhereWithoutVersionInput | RequestUpdateManyWithWhereWithoutVersionInput[] No
deleteMany RequestScalarWhereInput | RequestScalarWhereInput[] No

SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SecurityQuestionCreateWithoutVersionInput | SecurityQuestionCreateWithoutVersionInput[] | SecurityQuestionUncheckedCreateWithoutVersionInput | SecurityQuestionUncheckedCreateWithoutVersionInput[] No
connectOrCreate SecurityQuestionCreateOrConnectWithoutVersionInput | SecurityQuestionCreateOrConnectWithoutVersionInput[] No
upsert SecurityQuestionUpsertWithWhereUniqueWithoutVersionInput | SecurityQuestionUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SecurityQuestionCreateManyVersionInputEnvelope No
set SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
disconnect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
delete SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
connect SecurityQuestionWhereUniqueInput | SecurityQuestionWhereUniqueInput[] No
update SecurityQuestionUpdateWithWhereUniqueWithoutVersionInput | SecurityQuestionUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SecurityQuestionUpdateManyWithWhereWithoutVersionInput | SecurityQuestionUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] No

SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SocialMediaLinksCreateWithoutVersionInput | SocialMediaLinksCreateWithoutVersionInput[] | SocialMediaLinksUncheckedCreateWithoutVersionInput | SocialMediaLinksUncheckedCreateWithoutVersionInput[] No
connectOrCreate SocialMediaLinksCreateOrConnectWithoutVersionInput | SocialMediaLinksCreateOrConnectWithoutVersionInput[] No
upsert SocialMediaLinksUpsertWithWhereUniqueWithoutVersionInput | SocialMediaLinksUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SocialMediaLinksCreateManyVersionInputEnvelope No
set SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
disconnect SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
delete SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
connect SocialMediaLinksWhereUniqueInput | SocialMediaLinksWhereUniqueInput[] No
update SocialMediaLinksUpdateWithWhereUniqueWithoutVersionInput | SocialMediaLinksUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SocialMediaLinksUpdateManyWithWhereWithoutVersionInput | SocialMediaLinksUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SocialMediaLinksScalarWhereInput | SocialMediaLinksScalarWhereInput[] No

SupportUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SupportCreateWithoutVersionInput | SupportCreateWithoutVersionInput[] | SupportUncheckedCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput[] No
connectOrCreate SupportCreateOrConnectWithoutVersionInput | SupportCreateOrConnectWithoutVersionInput[] No
upsert SupportUpsertWithWhereUniqueWithoutVersionInput | SupportUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SupportCreateManyVersionInputEnvelope No
set SupportWhereUniqueInput | SupportWhereUniqueInput[] No
disconnect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
delete SupportWhereUniqueInput | SupportWhereUniqueInput[] No
connect SupportWhereUniqueInput | SupportWhereUniqueInput[] No
update SupportUpdateWithWhereUniqueWithoutVersionInput | SupportUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SupportUpdateManyWithWhereWithoutVersionInput | SupportUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SupportScalarWhereInput | SupportScalarWhereInput[] No

SupportMessageUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create SupportMessageCreateWithoutVersionInput | SupportMessageCreateWithoutVersionInput[] | SupportMessageUncheckedCreateWithoutVersionInput | SupportMessageUncheckedCreateWithoutVersionInput[] No
connectOrCreate SupportMessageCreateOrConnectWithoutVersionInput | SupportMessageCreateOrConnectWithoutVersionInput[] No
upsert SupportMessageUpsertWithWhereUniqueWithoutVersionInput | SupportMessageUpsertWithWhereUniqueWithoutVersionInput[] No
createMany SupportMessageCreateManyVersionInputEnvelope No
set SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
disconnect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
delete SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
connect SupportMessageWhereUniqueInput | SupportMessageWhereUniqueInput[] No
update SupportMessageUpdateWithWhereUniqueWithoutVersionInput | SupportMessageUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany SupportMessageUpdateManyWithWhereWithoutVersionInput | SupportMessageUpdateManyWithWhereWithoutVersionInput[] No
deleteMany SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create TeamCreateWithoutVersionInput | TeamCreateWithoutVersionInput[] | TeamUncheckedCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput[] No
connectOrCreate TeamCreateOrConnectWithoutVersionInput | TeamCreateOrConnectWithoutVersionInput[] No
upsert TeamUpsertWithWhereUniqueWithoutVersionInput | TeamUpsertWithWhereUniqueWithoutVersionInput[] No
createMany TeamCreateManyVersionInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutVersionInput | TeamUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany TeamUpdateManyWithWhereWithoutVersionInput | TeamUpdateManyWithWhereWithoutVersionInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create TwoFactorAuthCreateWithoutVersionInput | TwoFactorAuthCreateWithoutVersionInput[] | TwoFactorAuthUncheckedCreateWithoutVersionInput | TwoFactorAuthUncheckedCreateWithoutVersionInput[] No
connectOrCreate TwoFactorAuthCreateOrConnectWithoutVersionInput | TwoFactorAuthCreateOrConnectWithoutVersionInput[] No
upsert TwoFactorAuthUpsertWithWhereUniqueWithoutVersionInput | TwoFactorAuthUpsertWithWhereUniqueWithoutVersionInput[] No
createMany TwoFactorAuthCreateManyVersionInputEnvelope No
set TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
disconnect TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
delete TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
connect TwoFactorAuthWhereUniqueInput | TwoFactorAuthWhereUniqueInput[] No
update TwoFactorAuthUpdateWithWhereUniqueWithoutVersionInput | TwoFactorAuthUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany TwoFactorAuthUpdateManyWithWhereWithoutVersionInput | TwoFactorAuthUpdateManyWithWhereWithoutVersionInput[] No
deleteMany TwoFactorAuthScalarWhereInput | TwoFactorAuthScalarWhereInput[] No

UserUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create UserCreateWithoutVersionInput | UserCreateWithoutVersionInput[] | UserUncheckedCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput[] No
connectOrCreate UserCreateOrConnectWithoutVersionInput | UserCreateOrConnectWithoutVersionInput[] No
upsert UserUpsertWithWhereUniqueWithoutVersionInput | UserUpsertWithWhereUniqueWithoutVersionInput[] No
createMany UserCreateManyVersionInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutVersionInput | UserUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany UserUpdateManyWithWhereWithoutVersionInput | UserUpdateManyWithWhereWithoutVersionInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserRoleUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create UserRoleCreateWithoutVersionInput | UserRoleCreateWithoutVersionInput[] | UserRoleUncheckedCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput[] No
connectOrCreate UserRoleCreateOrConnectWithoutVersionInput | UserRoleCreateOrConnectWithoutVersionInput[] No
upsert UserRoleUpsertWithWhereUniqueWithoutVersionInput | UserRoleUpsertWithWhereUniqueWithoutVersionInput[] No
createMany UserRoleCreateManyVersionInputEnvelope No
set UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
disconnect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
delete UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
connect UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] No
update UserRoleUpdateWithWhereUniqueWithoutVersionInput | UserRoleUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany UserRoleUpdateManyWithWhereWithoutVersionInput | UserRoleUpdateManyWithWhereWithoutVersionInput[] No
deleteMany UserRoleScalarWhereInput | UserRoleScalarWhereInput[] No

UserSettingsUncheckedUpdateManyWithoutVersionNestedInput

Name Type Nullable
create UserSettingsCreateWithoutVersionInput | UserSettingsCreateWithoutVersionInput[] | UserSettingsUncheckedCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput[] No
connectOrCreate UserSettingsCreateOrConnectWithoutVersionInput | UserSettingsCreateOrConnectWithoutVersionInput[] No
upsert UserSettingsUpsertWithWhereUniqueWithoutVersionInput | UserSettingsUpsertWithWhereUniqueWithoutVersionInput[] No
createMany UserSettingsCreateManyVersionInputEnvelope No
set UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
disconnect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
delete UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
connect UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] No
update UserSettingsUpdateWithWhereUniqueWithoutVersionInput | UserSettingsUpdateWithWhereUniqueWithoutVersionInput[] No
updateMany UserSettingsUpdateManyWithWhereWithoutVersionInput | UserSettingsUpdateManyWithWhereWithoutVersionInput[] No
deleteMany UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedBigIntNullableFilter

Name Type Nullable
equals BigInt | BigIntFieldRefInput | Null Yes
in BigInt[] | ListBigIntFieldRefInput | Null Yes
notIn BigInt[] | ListBigIntFieldRefInput | Null Yes
lt BigInt | BigIntFieldRefInput No
lte BigInt | BigIntFieldRefInput No
gt BigInt | BigIntFieldRefInput No
gte BigInt | BigIntFieldRefInput No
not BigInt | NestedBigIntNullableFilter | Null Yes

NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes


NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedJsonNullableFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedBoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

NestedEnumFacilityTypeNullableFilter

Name Type Nullable
equals FacilityType | EnumFacilityTypeFieldRefInput | Null Yes
in FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null Yes
notIn FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null Yes
not FacilityType | NestedEnumFacilityTypeNullableFilter | Null Yes

NestedBoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

NestedFloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No


NestedFloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No



NestedEnumOrgTypeFilter

Name Type Nullable
equals OrgType | EnumOrgTypeFieldRefInput No
in OrgType[] | ListEnumOrgTypeFieldRefInput No
notIn OrgType[] | ListEnumOrgTypeFieldRefInput No
not OrgType | NestedEnumOrgTypeFilter No


NestedJsonFilter

Name Type Nullable
equals Json | JsonFieldRefInput | JsonNullValueFilter No
path String No
string_contains String | StringFieldRefInput No
string_starts_with String | StringFieldRefInput No
string_ends_with String | StringFieldRefInput No
array_contains Json | JsonFieldRefInput | Null Yes
array_starts_with Json | JsonFieldRefInput | Null Yes
array_ends_with Json | JsonFieldRefInput | Null Yes
lt Json | JsonFieldRefInput No
lte Json | JsonFieldRefInput No
gt Json | JsonFieldRefInput No
gte Json | JsonFieldRefInput No
not Json | JsonFieldRefInput | JsonNullValueFilter No





NestedEnumThemeNullableFilter

Name Type Nullable
equals Theme | EnumThemeFieldRefInput | Null Yes
in Theme[] | ListEnumThemeFieldRefInput | Null Yes
notIn Theme[] | ListEnumThemeFieldRefInput | Null Yes
not Theme | NestedEnumThemeNullableFilter | Null Yes

NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No





NestedEnumThemeNullableWithAggregatesFilter

Name Type Nullable
equals Theme | EnumThemeFieldRefInput | Null Yes
in Theme[] | ListEnumThemeFieldRefInput | Null Yes
notIn Theme[] | ListEnumThemeFieldRefInput | Null Yes
not Theme | NestedEnumThemeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumThemeNullableFilter No
_max NestedEnumThemeNullableFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedEnumGenderNullableFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput | Null Yes
in Gender[] | ListEnumGenderFieldRefInput | Null Yes
notIn Gender[] | ListEnumGenderFieldRefInput | Null Yes
not Gender | NestedEnumGenderNullableFilter | Null Yes

NestedEnumGenderNullableWithAggregatesFilter

Name Type Nullable
equals Gender | EnumGenderFieldRefInput | Null Yes
in Gender[] | ListEnumGenderFieldRefInput | Null Yes
notIn Gender[] | ListEnumGenderFieldRefInput | Null Yes
not Gender | NestedEnumGenderNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumGenderNullableFilter No
_max NestedEnumGenderNullableFilter No





ContactCreateWithoutAmbulanceInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutAmbulanceInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutAmbulanceInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutAmbulanceInput | ContactUncheckedCreateWithoutAmbulanceInput No


OrganizationUncheckedCreateWithoutAmbulanceInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutAmbulanceInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutAmbulanceInput | OrganizationUncheckedCreateWithoutAmbulanceInput No

PersonCreateWithoutAmbulanceInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutAmbulanceInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutAmbulanceInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutAmbulanceInput | PersonUncheckedCreateWithoutAmbulanceInput No

VersionCreateWithoutAmbulanceInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutAmbulanceInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutAmbulanceInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutAmbulanceInput | VersionUncheckedCreateWithoutAmbulanceInput No


ContactUpdateToOneWithWhereWithoutAmbulanceInput

Name Type Nullable
where ContactWhereInput No
data ContactUpdateWithoutAmbulanceInput | ContactUncheckedUpdateWithoutAmbulanceInput No

ContactUpdateWithoutAmbulanceInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutAmbulanceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No


OrganizationUpdateToOneWithWhereWithoutAmbulanceInput

Name Type Nullable
where OrganizationWhereInput No
data OrganizationUpdateWithoutAmbulanceInput | OrganizationUncheckedUpdateWithoutAmbulanceInput No

OrganizationUpdateWithoutAmbulanceInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutAmbulanceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No


PersonUpdateToOneWithWhereWithoutAmbulanceInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutAmbulanceInput | PersonUncheckedUpdateWithoutAmbulanceInput No

PersonUpdateWithoutAmbulanceInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutAmbulanceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutAmbulanceInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutAmbulanceInput | VersionUncheckedUpdateWithoutAmbulanceInput No

VersionUpdateWithoutAmbulanceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutAmbulanceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

ContactCreateWithoutBloodCenter_BloodCenter_contactToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutBloodCenter_BloodCenter_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutBloodCenter_BloodCenter_contactToContactInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutBloodCenter_BloodCenter_contactToContactInput | ContactUncheckedCreateWithoutBloodCenter_BloodCenter_contactToContactInput No

PersonCreateWithoutBloodCenterInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutBloodCenterInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutBloodCenterInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutBloodCenterInput | PersonUncheckedCreateWithoutBloodCenterInput No

VersionCreateWithoutBloodCenterInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutBloodCenterInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutBloodCenterInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutBloodCenterInput | VersionUncheckedCreateWithoutBloodCenterInput No

BloodDonationCreateWithoutBloodCenterInput

Name Type Nullable
amount Int No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes
Person PersonCreateNestedOneWithoutBloodDonationInput No
Version VersionCreateNestedOneWithoutBloodDonationInput No

BloodDonationUncheckedCreateWithoutBloodCenterInput

Name Type Nullable
id Int No
donor_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

BloodDonationCreateOrConnectWithoutBloodCenterInput

Name Type Nullable
where BloodDonationWhereUniqueInput No
create BloodDonationCreateWithoutBloodCenterInput | BloodDonationUncheckedCreateWithoutBloodCenterInput No

BloodDonationCreateManyBloodCenterInputEnvelope

Name Type Nullable
data BloodDonationCreateManyBloodCenterInput | BloodDonationCreateManyBloodCenterInput[] No
skipDuplicates Boolean No

ContactCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUncheckedCreateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInputEnvelope

Name Type Nullable
data ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInput | ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInput[] No
skipDuplicates Boolean No


ContactUpdateToOneWithWhereWithoutBloodCenter_BloodCenter_contactToContactInput

Name Type Nullable
where ContactWhereInput No
data ContactUpdateWithoutBloodCenter_BloodCenter_contactToContactInput | ContactUncheckedUpdateWithoutBloodCenter_BloodCenter_contactToContactInput No

ContactUpdateWithoutBloodCenter_BloodCenter_contactToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutBloodCenter_BloodCenter_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No


PersonUpdateToOneWithWhereWithoutBloodCenterInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutBloodCenterInput | PersonUncheckedUpdateWithoutBloodCenterInput No

PersonUpdateWithoutBloodCenterInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutBloodCenterInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutBloodCenterInput | VersionUncheckedUpdateWithoutBloodCenterInput No

VersionUpdateWithoutBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


BloodDonationUpdateWithWhereUniqueWithoutBloodCenterInput

Name Type Nullable
where BloodDonationWhereUniqueInput No
data BloodDonationUpdateWithoutBloodCenterInput | BloodDonationUncheckedUpdateWithoutBloodCenterInput No

BloodDonationUpdateManyWithWhereWithoutBloodCenterInput

Name Type Nullable
where BloodDonationScalarWhereInput No
data BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyWithoutBloodCenterInput No

BloodDonationScalarWhereInput

Name Type Nullable
AND BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No
OR BloodDonationScalarWhereInput[] No
NOT BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] No
id IntFilter | Int No
donor_id IntFilter | Int No
organization_id IntFilter | Int No
amount IntFilter | Int No
version StringFilter | String No
donated_at DateTimeFilter | DateTime No
referred_by StringNullableFilter | String | Null Yes
test_done JsonNullableFilter No
bags StringNullableListFilter No
media_done StringNullableFilter | String | Null Yes
media_used StringNullableFilter | String | Null Yes
incubation StringNullableFilter | String | Null Yes
note StringNullableFilter | String | Null Yes
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
cabin_no StringNullableFilter | String | Null Yes
reg_no StringNullableFilter | String | Null Yes


ContactUpdateWithWhereUniqueWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | ContactUncheckedUpdateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

ContactUpdateManyWithWhereWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

ContactScalarWhereInput

Name Type Nullable
AND ContactScalarWhereInput | ContactScalarWhereInput[] No
OR ContactScalarWhereInput[] No
NOT ContactScalarWhereInput | ContactScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
address_line StringFilter | String No
address_line_1 StringNullableFilter | String | Null Yes
state StringFilter | String No
city StringFilter | String No
zip StringFilter | String No
phone StringFilter | String No
phone_1 StringNullableFilter | String | Null Yes
fax StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
email_1 StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
social_media JsonNullableFilter No
version StringFilter | String No
country StringNullableFilter | String | Null Yes
person IntNullableFilter | Int | Null Yes
club IntNullableFilter | Int | Null Yes
blood_center IntNullableFilter | Int | Null Yes
donation IntNullableFilter | Int | Null Yes
hospital IntNullableFilter | Int | Null Yes

BloodCenterCreateWithoutBloodDonationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
established_at DateTime No
title String No
Contact_BloodCenter_contactToContact ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput No
Person PersonCreateNestedOneWithoutBloodCenterInput No
Version VersionCreateNestedOneWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterUncheckedCreateWithoutBloodDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
contact Int | Null Yes
title String No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterCreateOrConnectWithoutBloodDonationInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
create BloodCenterCreateWithoutBloodDonationInput | BloodCenterUncheckedCreateWithoutBloodDonationInput No

PersonCreateWithoutBloodDonationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutBloodDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutBloodDonationInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutBloodDonationInput | PersonUncheckedCreateWithoutBloodDonationInput No

VersionCreateWithoutBloodDonationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutBloodDonationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutBloodDonationInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutBloodDonationInput | VersionUncheckedCreateWithoutBloodDonationInput No


BloodCenterUpdateToOneWithWhereWithoutBloodDonationInput

Name Type Nullable
where BloodCenterWhereInput No
data BloodCenterUpdateWithoutBloodDonationInput | BloodCenterUncheckedUpdateWithoutBloodDonationInput No

BloodCenterUpdateWithoutBloodDonationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
Contact_BloodCenter_contactToContact ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput No
Person PersonUpdateOneRequiredWithoutBloodCenterNestedInput No
Version VersionUpdateOneRequiredWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateWithoutBloodDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No


PersonUpdateToOneWithWhereWithoutBloodDonationInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutBloodDonationInput | PersonUncheckedUpdateWithoutBloodDonationInput No

PersonUpdateWithoutBloodDonationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutBloodDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutBloodDonationInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutBloodDonationInput | VersionUncheckedUpdateWithoutBloodDonationInput No

VersionUpdateWithoutBloodDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutBloodDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

PersonCreateWithoutClub_Club_chairmanToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutClub_Club_chairmanToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutClub_Club_chairmanToPersonInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutClub_Club_chairmanToPersonInput | PersonUncheckedCreateWithoutClub_Club_chairmanToPersonInput No

ContactCreateWithoutClub_Club_contactToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutClub_Club_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutClub_Club_contactToContactInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutClub_Club_contactToContactInput | ContactUncheckedCreateWithoutClub_Club_contactToContactInput No

PersonCreateWithoutClub_Club_founderToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutClub_Club_founderToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutClub_Club_founderToPersonInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutClub_Club_founderToPersonInput | PersonUncheckedCreateWithoutClub_Club_founderToPersonInput No

VersionCreateWithoutClubInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutClubInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutClubInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutClubInput | VersionUncheckedCreateWithoutClubInput No

PersonCreateWithoutClub_Club_vice_chairmanToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutClub_Club_vice_chairmanToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutClub_Club_vice_chairmanToPersonInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutClub_Club_vice_chairmanToPersonInput | PersonUncheckedCreateWithoutClub_Club_vice_chairmanToPersonInput No

ContactCreateWithoutClub_Contact_clubToClubInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutClub_Contact_clubToClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutClub_Contact_clubToClubInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutClub_Contact_clubToClubInput | ContactUncheckedCreateWithoutClub_Contact_clubToClubInput No

ContactCreateManyClub_Contact_clubToClubInputEnvelope

Name Type Nullable
data ContactCreateManyClub_Contact_clubToClubInput | ContactCreateManyClub_Contact_clubToClubInput[] No
skipDuplicates Boolean No

MemberCreateWithoutClubInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Donation DonationCreateNestedManyWithoutMemberInput No
Person PersonCreateNestedOneWithoutMemberInput No
Version VersionCreateNestedOneWithoutMemberInput No
Request RequestCreateNestedManyWithoutMemberInput No

MemberUncheckedCreateWithoutClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes
Donation DonationUncheckedCreateNestedManyWithoutMemberInput No
Request RequestUncheckedCreateNestedManyWithoutMemberInput No

MemberCreateOrConnectWithoutClubInput

Name Type Nullable
where MemberWhereUniqueInput No
create MemberCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput No

MemberCreateManyClubInputEnvelope

Name Type Nullable
data MemberCreateManyClubInput | MemberCreateManyClubInput[] No
skipDuplicates Boolean No


OrganizationUncheckedCreateWithoutClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutClubInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput No

OrganizationCreateManyClubInputEnvelope

Name Type Nullable
data OrganizationCreateManyClubInput | OrganizationCreateManyClubInput[] No
skipDuplicates Boolean No


PersonUpdateToOneWithWhereWithoutClub_Club_chairmanToPersonInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutClub_Club_chairmanToPersonInput | PersonUncheckedUpdateWithoutClub_Club_chairmanToPersonInput No

PersonUpdateWithoutClub_Club_chairmanToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutClub_Club_chairmanToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


ContactUpdateToOneWithWhereWithoutClub_Club_contactToContactInput

Name Type Nullable
where ContactWhereInput No
data ContactUpdateWithoutClub_Club_contactToContactInput | ContactUncheckedUpdateWithoutClub_Club_contactToContactInput No

ContactUpdateWithoutClub_Club_contactToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutClub_Club_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No


PersonUpdateToOneWithWhereWithoutClub_Club_founderToPersonInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutClub_Club_founderToPersonInput | PersonUncheckedUpdateWithoutClub_Club_founderToPersonInput No

PersonUpdateWithoutClub_Club_founderToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutClub_Club_founderToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutClubInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutClubInput | VersionUncheckedUpdateWithoutClubInput No

VersionUpdateWithoutClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


PersonUpdateToOneWithWhereWithoutClub_Club_vice_chairmanToPersonInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutClub_Club_vice_chairmanToPersonInput | PersonUncheckedUpdateWithoutClub_Club_vice_chairmanToPersonInput No

PersonUpdateWithoutClub_Club_vice_chairmanToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutClub_Club_vice_chairmanToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


ContactUpdateWithWhereUniqueWithoutClub_Contact_clubToClubInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutClub_Contact_clubToClubInput | ContactUncheckedUpdateWithoutClub_Contact_clubToClubInput No

ContactUpdateManyWithWhereWithoutClub_Contact_clubToClubInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubInput No

MemberUpsertWithWhereUniqueWithoutClubInput

Name Type Nullable
where MemberWhereUniqueInput No
update MemberUpdateWithoutClubInput | MemberUncheckedUpdateWithoutClubInput No
create MemberCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput No

MemberUpdateWithWhereUniqueWithoutClubInput

Name Type Nullable
where MemberWhereUniqueInput No
data MemberUpdateWithoutClubInput | MemberUncheckedUpdateWithoutClubInput No

MemberUpdateManyWithWhereWithoutClubInput

Name Type Nullable
where MemberScalarWhereInput No
data MemberUpdateManyMutationInput | MemberUncheckedUpdateManyWithoutClubInput No

MemberScalarWhereInput

Name Type Nullable
AND MemberScalarWhereInput | MemberScalarWhereInput[] No
OR MemberScalarWhereInput[] No
NOT MemberScalarWhereInput | MemberScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
allergies StringNullableFilter | String | Null Yes
complications StringNullableFilter | String | Null Yes
medications StringNullableFilter | String | Null Yes
blood_disorders StringNullableFilter | String | Null Yes
club_id IntNullableFilter | Int | Null Yes
infectious_diseases StringNullableFilter | String | Null Yes
last_blood_donation DateTimeNullableFilter | DateTime | Null Yes
medical_conditions StringNullableFilter | String | Null Yes
person_id IntNullableFilter | Int | Null Yes


OrganizationUpdateWithWhereUniqueWithoutClubInput

Name Type Nullable
where OrganizationWhereUniqueInput No
data OrganizationUpdateWithoutClubInput | OrganizationUncheckedUpdateWithoutClubInput No

OrganizationUpdateManyWithWhereWithoutClubInput

Name Type Nullable
where OrganizationScalarWhereInput No
data OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutClubInput No

OrganizationScalarWhereInput

Name Type Nullable
AND OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No
OR OrganizationScalarWhereInput[] No
NOT OrganizationScalarWhereInput | OrganizationScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
org_type EnumOrgTypeFilter | OrgType No
org_id IntFilter | Int No
Volunteer JsonFilter No
personId IntFilter | Int No
organizationSettingsId IntFilter | Int No
clubId IntNullableFilter | Int | Null Yes
version StringFilter | String No

AmbulanceCreateWithoutContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes
Organization OrganizationCreateNestedOneWithoutAmbulanceInput No
Person PersonCreateNestedOneWithoutAmbulanceInput No
Version VersionCreateNestedOneWithoutAmbulanceInput No

AmbulanceUncheckedCreateWithoutContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
version String No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes

AmbulanceCreateOrConnectWithoutContactInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
create AmbulanceCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput No

AmbulanceCreateManyContactInputEnvelope

Name Type Nullable
data AmbulanceCreateManyContactInput | AmbulanceCreateManyContactInput[] No
skipDuplicates Boolean No

BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
established_at DateTime No
title String No
Person PersonCreateNestedOneWithoutBloodCenterInput No
Version VersionCreateNestedOneWithoutBloodCenterInput No
BloodDonation BloodDonationCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
title String No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterCreateOrConnectWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
create BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput | BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput No

BloodCenterCreateManyContact_BloodCenter_contactToContactInputEnvelope

Name Type Nullable
data BloodCenterCreateManyContact_BloodCenter_contactToContactInput | BloodCenterCreateManyContact_BloodCenter_contactToContactInput[] No
skipDuplicates Boolean No

ClubCreateWithoutContact_Club_contactToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutContact_Club_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
version String No
chairman Int No
founder Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutContact_Club_contactToContactInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutContact_Club_contactToContactInput | ClubUncheckedCreateWithoutContact_Club_contactToContactInput No

ClubCreateManyContact_Club_contactToContactInputEnvelope

Name Type Nullable
data ClubCreateManyContact_Club_contactToContactInput | ClubCreateManyContact_Club_contactToContactInput[] No
skipDuplicates Boolean No

BloodCenterCreateWithoutContact_Contact_blood_centerToBloodCenterInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
established_at DateTime No
title String No
Contact_BloodCenter_contactToContact ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput No
Person PersonCreateNestedOneWithoutBloodCenterInput No
Version VersionCreateNestedOneWithoutBloodCenterInput No
BloodDonation BloodDonationCreateNestedManyWithoutBloodCenterInput No

BloodCenterUncheckedCreateWithoutContact_Contact_blood_centerToBloodCenterInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
contact Int | Null Yes
title String No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput No

BloodCenterCreateOrConnectWithoutContact_Contact_blood_centerToBloodCenterInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
create BloodCenterCreateWithoutContact_Contact_blood_centerToBloodCenterInput | BloodCenterUncheckedCreateWithoutContact_Contact_blood_centerToBloodCenterInput No

ClubCreateWithoutContact_Contact_clubToClubInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutContact_Contact_clubToClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutContact_Contact_clubToClubInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutContact_Contact_clubToClubInput | ClubUncheckedCreateWithoutContact_Contact_clubToClubInput No

CountryCreateWithoutContactInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Version VersionCreateNestedOneWithoutCountryInput No

CountryUncheckedCreateWithoutContactInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
version String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes

CountryCreateOrConnectWithoutContactInput

Name Type Nullable
where CountryWhereUniqueInput No
create CountryCreateWithoutContactInput | CountryUncheckedCreateWithoutContactInput No

DonationCreateWithoutContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
Member MemberCreateNestedOneWithoutDonationInput No
Organization OrganizationCreateNestedOneWithoutDonationInput No
Person PersonCreateNestedOneWithoutDonationInput No
Version VersionCreateNestedOneWithoutDonationInput No

DonationUncheckedCreateWithoutContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No
organization Int No

DonationCreateOrConnectWithoutContactInput

Name Type Nullable
where DonationWhereUniqueInput No
create DonationCreateWithoutContactInput | DonationUncheckedCreateWithoutContactInput No

HospitalCreateWithoutContact_Contact_hospitalToHospitalInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Hospital_contactToContact ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput No
Location LocationCreateNestedOneWithoutHospitalInput No
Version VersionCreateNestedOneWithoutHospitalInput No

HospitalUncheckedCreateWithoutContact_Contact_hospitalToHospitalInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
location Int | Null Yes
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes

HospitalCreateOrConnectWithoutContact_Contact_hospitalToHospitalInput

Name Type Nullable
where HospitalWhereUniqueInput No
create HospitalCreateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedCreateWithoutContact_Contact_hospitalToHospitalInput No

PersonCreateWithoutContact_Contact_personToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutContact_Contact_personToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutContact_Contact_personToPersonInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutContact_Contact_personToPersonInput | PersonUncheckedCreateWithoutContact_Contact_personToPersonInput No

VersionCreateWithoutContactInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutContactInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutContactInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutContactInput | VersionUncheckedCreateWithoutContactInput No

HospitalCreateWithoutContact_Hospital_contactToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No
Location LocationCreateNestedOneWithoutHospitalInput No
Version VersionCreateNestedOneWithoutHospitalInput No

HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
location Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No

HospitalCreateOrConnectWithoutContact_Hospital_contactToContactInput

Name Type Nullable
where HospitalWhereUniqueInput No
create HospitalCreateWithoutContact_Hospital_contactToContactInput | HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput No

HospitalCreateManyContact_Hospital_contactToContactInputEnvelope

Name Type Nullable
data HospitalCreateManyContact_Hospital_contactToContactInput | HospitalCreateManyContact_Hospital_contactToContactInput[] No
skipDuplicates Boolean No

PersonCreateWithoutContact_Person_contact_idToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutContact_Person_contact_idToContactInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutContact_Person_contact_idToContactInput | PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput No

PersonCreateManyContact_Person_contact_idToContactInputEnvelope

Name Type Nullable
data PersonCreateManyContact_Person_contact_idToContactInput | PersonCreateManyContact_Person_contact_idToContactInput[] No
skipDuplicates Boolean No


AmbulanceUpdateWithWhereUniqueWithoutContactInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
data AmbulanceUpdateWithoutContactInput | AmbulanceUncheckedUpdateWithoutContactInput No

AmbulanceUpdateManyWithWhereWithoutContactInput

Name Type Nullable
where AmbulanceScalarWhereInput No
data AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutContactInput No

AmbulanceScalarWhereInput

Name Type Nullable
AND AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No
OR AmbulanceScalarWhereInput[] No
NOT AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
vehicle_number StringFilter | String No
ambulance_type StringNullableFilter | String | Null Yes
person IntFilter | Int No
version StringFilter | String No
organization IntNullableFilter | Int | Null Yes
equipment StringNullableListFilter No
contact IntNullableFilter | Int | Null Yes
color StringNullableFilter | String | Null Yes


BloodCenterUpdateWithWhereUniqueWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
data BloodCenterUpdateWithoutContact_BloodCenter_contactToContactInput | BloodCenterUncheckedUpdateWithoutContact_BloodCenter_contactToContactInput No

BloodCenterUpdateManyWithWhereWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
where BloodCenterScalarWhereInput No
data BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactInput No

BloodCenterScalarWhereInput

Name Type Nullable
AND BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No
OR BloodCenterScalarWhereInput[] No
NOT BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
established_at DateTimeFilter | DateTime No
version StringFilter | String No
founder IntFilter | Int No
contact IntNullableFilter | Int | Null Yes
title StringFilter | String No


ClubUpdateWithWhereUniqueWithoutContact_Club_contactToContactInput

Name Type Nullable
where ClubWhereUniqueInput No
data ClubUpdateWithoutContact_Club_contactToContactInput | ClubUncheckedUpdateWithoutContact_Club_contactToContactInput No

ClubUpdateManyWithWhereWithoutContact_Club_contactToContactInput

Name Type Nullable
where ClubScalarWhereInput No
data ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutContact_Club_contactToContactInput No

ClubScalarWhereInput

Name Type Nullable
AND ClubScalarWhereInput | ClubScalarWhereInput[] No
OR ClubScalarWhereInput[] No
NOT ClubScalarWhereInput | ClubScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
name StringFilter | String No
established_at DateTimeFilter | DateTime No
contact IntFilter | Int No
version StringFilter | String No
chairman IntFilter | Int No
founder IntFilter | Int No
vice_chairman IntFilter | Int No


BloodCenterUpdateToOneWithWhereWithoutContact_Contact_blood_centerToBloodCenterInput

Name Type Nullable
where BloodCenterWhereInput No
data BloodCenterUpdateWithoutContact_Contact_blood_centerToBloodCenterInput | BloodCenterUncheckedUpdateWithoutContact_Contact_blood_centerToBloodCenterInput No

BloodCenterUpdateWithoutContact_Contact_blood_centerToBloodCenterInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
Contact_BloodCenter_contactToContact ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput No
Person PersonUpdateOneRequiredWithoutBloodCenterNestedInput No
Version VersionUpdateOneRequiredWithoutBloodCenterNestedInput No
BloodDonation BloodDonationUpdateManyWithoutBloodCenterNestedInput No

BloodCenterUncheckedUpdateWithoutContact_Contact_blood_centerToBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput No


ClubUpdateToOneWithWhereWithoutContact_Contact_clubToClubInput

Name Type Nullable
where ClubWhereInput No
data ClubUpdateWithoutContact_Contact_clubToClubInput | ClubUncheckedUpdateWithoutContact_Contact_clubToClubInput No

ClubUpdateWithoutContact_Contact_clubToClubInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutContact_Contact_clubToClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No


CountryUpdateToOneWithWhereWithoutContactInput

Name Type Nullable
where CountryWhereInput No
data CountryUpdateWithoutContactInput | CountryUncheckedUpdateWithoutContactInput No

CountryUpdateWithoutContactInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Version VersionUpdateOneRequiredWithoutCountryNestedInput No

CountryUncheckedUpdateWithoutContactInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes


DonationUpdateToOneWithWhereWithoutContactInput

Name Type Nullable
where DonationWhereInput No
data DonationUpdateWithoutContactInput | DonationUncheckedUpdateWithoutContactInput No


DonationUncheckedUpdateWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No


HospitalUpdateToOneWithWhereWithoutContact_Contact_hospitalToHospitalInput

Name Type Nullable
where HospitalWhereInput No
data HospitalUpdateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedUpdateWithoutContact_Contact_hospitalToHospitalInput No

HospitalUpdateWithoutContact_Contact_hospitalToHospitalInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Hospital_contactToContact ContactUpdateOneWithoutHospital_Hospital_contactToContactNestedInput No
Location LocationUpdateOneWithoutHospitalNestedInput No
Version VersionUpdateOneRequiredWithoutHospitalNestedInput No

HospitalUncheckedUpdateWithoutContact_Contact_hospitalToHospitalInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes


PersonUpdateToOneWithWhereWithoutContact_Contact_personToPersonInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutContact_Contact_personToPersonInput | PersonUncheckedUpdateWithoutContact_Contact_personToPersonInput No

PersonUpdateWithoutContact_Contact_personToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutContact_Contact_personToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutContactInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutContactInput | VersionUncheckedUpdateWithoutContactInput No

VersionUpdateWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


HospitalUpdateWithWhereUniqueWithoutContact_Hospital_contactToContactInput

Name Type Nullable
where HospitalWhereUniqueInput No
data HospitalUpdateWithoutContact_Hospital_contactToContactInput | HospitalUncheckedUpdateWithoutContact_Hospital_contactToContactInput No

HospitalUpdateManyWithWhereWithoutContact_Hospital_contactToContactInput

Name Type Nullable
where HospitalScalarWhereInput No
data HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactInput No

HospitalScalarWhereInput

Name Type Nullable
AND HospitalScalarWhereInput | HospitalScalarWhereInput[] No
OR HospitalScalarWhereInput[] No
NOT HospitalScalarWhereInput | HospitalScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
name StringFilter | String No
founded_at DateTimeFilter | DateTime No
accreditation StringNullableFilter | String | Null Yes
bed_count IntNullableFilter | Int | Null Yes
emergency_room BoolNullableFilter | Boolean | Null Yes
services StringNullableListFilter No
specialties StringNullableListFilter No
rating FloatNullableFilter | Float | Null Yes
facility_type EnumFacilityTypeNullableFilter | FacilityType | Null Yes
ownership StringNullableFilter | String | Null Yes
insurance_accepted StringNullableFilter | String | Null Yes
operating_hours StringNullableFilter | String | Null Yes
infrastructure StringNullableFilter | String | Null Yes
security_controls StringNullableFilter | String | Null Yes
version StringFilter | String No
location IntNullableFilter | Int | Null Yes
contact IntNullableFilter | Int | Null Yes
founder IntNullableFilter | Int | Null Yes
director IntNullableFilter | Int | Null Yes
chairman IntNullableFilter | Int | Null Yes


PersonUpdateWithWhereUniqueWithoutContact_Person_contact_idToContactInput

Name Type Nullable
where PersonWhereUniqueInput No
data PersonUpdateWithoutContact_Person_contact_idToContactInput | PersonUncheckedUpdateWithoutContact_Person_contact_idToContactInput No

PersonUpdateManyWithWhereWithoutContact_Person_contact_idToContactInput

Name Type Nullable
where PersonScalarWhereInput No
data PersonUpdateManyMutationInput | PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactInput No

PersonScalarWhereInput

Name Type Nullable
AND PersonScalarWhereInput | PersonScalarWhereInput[] No
OR PersonScalarWhereInput[] No
NOT PersonScalarWhereInput | PersonScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
first_name StringFilter | String No
last_name StringNullableFilter | String | Null Yes
father_name StringNullableFilter | String | Null Yes
mother_name StringNullableFilter | String | Null Yes
profession StringNullableFilter | String | Null Yes
dob DateTimeNullableFilter | DateTime | Null Yes
gender EnumGenderNullableFilter | Gender | Null Yes
version StringFilter | String No
avatar StringNullableFilter | String | Null Yes
contact_id IntFilter | Int No
teamId IntNullableFilter | Int | Null Yes
bid StringNullableFilter | String | Null Yes
driving StringNullableFilter | String | Null Yes
nid StringNullableFilter | String | Null Yes
passport StringNullableFilter | String | Null Yes

ContactCreateWithoutCountryInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutCountryInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutCountryInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput No

ContactCreateManyCountryInputEnvelope

Name Type Nullable
data ContactCreateManyCountryInput | ContactCreateManyCountryInput[] No
skipDuplicates Boolean No

VersionCreateWithoutCountryInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutCountryInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutCountryInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutCountryInput | VersionUncheckedCreateWithoutCountryInput No


ContactUpdateWithWhereUniqueWithoutCountryInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutCountryInput | ContactUncheckedUpdateWithoutCountryInput No

ContactUpdateManyWithWhereWithoutCountryInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutCountryInput No


VersionUpdateToOneWithWhereWithoutCountryInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutCountryInput | VersionUncheckedUpdateWithoutCountryInput No

VersionUpdateWithoutCountryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutCountryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

VersionCreateWithoutDeviceInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutDeviceInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutDeviceInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutDeviceInput | VersionUncheckedCreateWithoutDeviceInput No

LoginRecordCreateWithoutDeviceInput

Name Type Nullable
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutLoginRecordInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutLoginRecordInput No
User UserCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsCreateNestedManyWithoutLoginRecordInput No

LoginRecordUncheckedCreateWithoutDeviceInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No
User UserUncheckedCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No

LoginRecordCreateOrConnectWithoutDeviceInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
create LoginRecordCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput No

LoginRecordCreateManyDeviceInputEnvelope

Name Type Nullable
data LoginRecordCreateManyDeviceInput | LoginRecordCreateManyDeviceInput[] No
skipDuplicates Boolean No


VersionUpdateToOneWithWhereWithoutDeviceInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutDeviceInput | VersionUncheckedUpdateWithoutDeviceInput No

VersionUpdateWithoutDeviceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutDeviceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


LoginRecordUpdateWithWhereUniqueWithoutDeviceInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
data LoginRecordUpdateWithoutDeviceInput | LoginRecordUncheckedUpdateWithoutDeviceInput No

LoginRecordUpdateManyWithWhereWithoutDeviceInput

Name Type Nullable
where LoginRecordScalarWhereInput No
data LoginRecordUpdateManyMutationInput | LoginRecordUncheckedUpdateManyWithoutDeviceInput No

LoginRecordScalarWhereInput

Name Type Nullable
AND LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] No
OR LoginRecordScalarWhereInput[] No
NOT LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] No
id IntFilter | Int No
user IntFilter | Int No
ip_address StringFilter | String No
user_agent StringFilter | String No
login_status StringFilter | String No
session_id StringNullableFilter | String | Null Yes
location StringNullableFilter | String | Null Yes
authentication EnumAuthenticationMethodNullableFilter | AuthenticationMethod | Null Yes
security_tokens StringNullableFilter | String | Null Yes
logout_timestamp DateTimeNullableFilter | DateTime | Null Yes
version StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
devices IntNullableFilter | Int | Null Yes

ContactCreateWithoutDonationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutDonationInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput No

ContactCreateManyDonationInputEnvelope

Name Type Nullable
data ContactCreateManyDonationInput | ContactCreateManyDonationInput[] No
skipDuplicates Boolean No

MemberCreateWithoutDonationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Club ClubCreateNestedOneWithoutMemberInput No
Person PersonCreateNestedOneWithoutMemberInput No
Version VersionCreateNestedOneWithoutMemberInput No
Request RequestCreateNestedManyWithoutMemberInput No

MemberUncheckedCreateWithoutDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes
Request RequestUncheckedCreateNestedManyWithoutMemberInput No

MemberCreateOrConnectWithoutDonationInput

Name Type Nullable
where MemberWhereUniqueInput No
create MemberCreateWithoutDonationInput | MemberUncheckedCreateWithoutDonationInput No


OrganizationUncheckedCreateWithoutDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutDonationInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutDonationInput | OrganizationUncheckedCreateWithoutDonationInput No

PersonCreateWithoutDonationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutDonationInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutDonationInput | PersonUncheckedCreateWithoutDonationInput No

VersionCreateWithoutDonationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutDonationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutDonationInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutDonationInput | VersionUncheckedCreateWithoutDonationInput No


ContactUpdateWithWhereUniqueWithoutDonationInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutDonationInput | ContactUncheckedUpdateWithoutDonationInput No

ContactUpdateManyWithWhereWithoutDonationInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutDonationInput No


MemberUpdateToOneWithWhereWithoutDonationInput

Name Type Nullable
where MemberWhereInput No
data MemberUpdateWithoutDonationInput | MemberUncheckedUpdateWithoutDonationInput No

MemberUpdateWithoutDonationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Club ClubUpdateOneWithoutMemberNestedInput No
Person PersonUpdateOneWithoutMemberNestedInput No
Version VersionUpdateOneRequiredWithoutMemberNestedInput No
Request RequestUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
Request RequestUncheckedUpdateManyWithoutMemberNestedInput No


OrganizationUpdateToOneWithWhereWithoutDonationInput

Name Type Nullable
where OrganizationWhereInput No
data OrganizationUpdateWithoutDonationInput | OrganizationUncheckedUpdateWithoutDonationInput No

OrganizationUpdateWithoutDonationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No


PersonUpdateToOneWithWhereWithoutDonationInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutDonationInput | PersonUncheckedUpdateWithoutDonationInput No

PersonUpdateWithoutDonationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutDonationInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutDonationInput | VersionUncheckedUpdateWithoutDonationInput No

VersionUpdateWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

ContactCreateWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutHospital_Contact_hospitalToHospitalInput | ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput No

ContactCreateManyHospital_Contact_hospitalToHospitalInputEnvelope

Name Type Nullable
data ContactCreateManyHospital_Contact_hospitalToHospitalInput | ContactCreateManyHospital_Contact_hospitalToHospitalInput[] No
skipDuplicates Boolean No

ContactCreateWithoutHospital_Hospital_contactToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutHospital_Hospital_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutHospital_Hospital_contactToContactInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedCreateWithoutHospital_Hospital_contactToContactInput No

LocationCreateWithoutHospitalInput

Name Type Nullable
latitude Float No
longitude Float No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Version VersionCreateNestedOneWithoutLocationInput No

LocationUncheckedCreateWithoutHospitalInput

Name Type Nullable
id Int No
latitude Float No
longitude Float No
version String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes

LocationCreateOrConnectWithoutHospitalInput

Name Type Nullable
where LocationWhereUniqueInput No
create LocationCreateWithoutHospitalInput | LocationUncheckedCreateWithoutHospitalInput No

VersionCreateWithoutHospitalInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutHospitalInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutHospitalInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutHospitalInput | VersionUncheckedCreateWithoutHospitalInput No


ContactUpdateWithWhereUniqueWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutHospital_Contact_hospitalToHospitalInput | ContactUncheckedUpdateWithoutHospital_Contact_hospitalToHospitalInput No

ContactUpdateManyWithWhereWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalInput No


ContactUpdateToOneWithWhereWithoutHospital_Hospital_contactToContactInput

Name Type Nullable
where ContactWhereInput No
data ContactUpdateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedUpdateWithoutHospital_Hospital_contactToContactInput No

ContactUpdateWithoutHospital_Hospital_contactToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutHospital_Hospital_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No


LocationUpdateToOneWithWhereWithoutHospitalInput

Name Type Nullable
where LocationWhereInput No
data LocationUpdateWithoutHospitalInput | LocationUncheckedUpdateWithoutHospitalInput No

LocationUpdateWithoutHospitalInput

Name Type Nullable
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Version VersionUpdateOneRequiredWithoutLocationNestedInput No

LocationUncheckedUpdateWithoutHospitalInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes


VersionUpdateToOneWithWhereWithoutHospitalInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutHospitalInput | VersionUncheckedUpdateWithoutHospitalInput No

VersionUpdateWithoutHospitalInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutHospitalInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

HospitalCreateWithoutLocationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No
Contact_Hospital_contactToContact ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput No
Version VersionCreateNestedOneWithoutHospitalInput No

HospitalUncheckedCreateWithoutLocationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No

HospitalCreateOrConnectWithoutLocationInput

Name Type Nullable
where HospitalWhereUniqueInput No
create HospitalCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput No

HospitalCreateManyLocationInputEnvelope

Name Type Nullable
data HospitalCreateManyLocationInput | HospitalCreateManyLocationInput[] No
skipDuplicates Boolean No

VersionCreateWithoutLocationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutLocationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutLocationInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutLocationInput | VersionUncheckedCreateWithoutLocationInput No


HospitalUpdateWithWhereUniqueWithoutLocationInput

Name Type Nullable
where HospitalWhereUniqueInput No
data HospitalUpdateWithoutLocationInput | HospitalUncheckedUpdateWithoutLocationInput No

HospitalUpdateManyWithWhereWithoutLocationInput

Name Type Nullable
where HospitalScalarWhereInput No
data HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyWithoutLocationInput No


VersionUpdateToOneWithWhereWithoutLocationInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutLocationInput | VersionUncheckedUpdateWithoutLocationInput No

VersionUpdateWithoutLocationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutLocationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

DeviceCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
Version VersionCreateNestedOneWithoutDeviceInput No

DeviceUncheckedCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
version String No

DeviceCreateOrConnectWithoutLoginRecordInput

Name Type Nullable
where DeviceWhereUniqueInput No
create DeviceCreateWithoutLoginRecordInput | DeviceUncheckedCreateWithoutLoginRecordInput No

VersionCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutLoginRecordInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutLoginRecordInput | VersionUncheckedCreateWithoutLoginRecordInput No

OrganizationSettingsCreateWithoutLoginRecordInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
Organization OrganizationCreateNestedManyWithoutOrganizationSettingsInput No
Version VersionCreateNestedOneWithoutOrganizationSettingsInput No

OrganizationSettingsUncheckedCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
version String No
Organization OrganizationUncheckedCreateNestedManyWithoutOrganizationSettingsInput No

OrganizationSettingsCreateOrConnectWithoutLoginRecordInput

Name Type Nullable
where OrganizationSettingsWhereUniqueInput No
create OrganizationSettingsCreateWithoutLoginRecordInput | OrganizationSettingsUncheckedCreateWithoutLoginRecordInput No

OrganizationSettingsCreateManyLoginRecordInputEnvelope

Name Type Nullable
data OrganizationSettingsCreateManyLoginRecordInput | OrganizationSettingsCreateManyLoginRecordInput[] No
skipDuplicates Boolean No

UserCreateWithoutLoginRecordInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutLoginRecordInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput No

UserCreateManyLoginRecordInputEnvelope

Name Type Nullable
data UserCreateManyLoginRecordInput | UserCreateManyLoginRecordInput[] No
skipDuplicates Boolean No

UserSettingsCreateWithoutLoginRecordInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
User UserCreateNestedManyWithoutUserSettingsInput No
SecurityQuestion SecurityQuestionCreateNestedOneWithoutUserSettingsInput No
Version VersionCreateNestedOneWithoutUserSettingsInput No

UserSettingsUncheckedCreateWithoutLoginRecordInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No
security_question Int | Null Yes
User UserUncheckedCreateNestedManyWithoutUserSettingsInput No

UserSettingsCreateOrConnectWithoutLoginRecordInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
create UserSettingsCreateWithoutLoginRecordInput | UserSettingsUncheckedCreateWithoutLoginRecordInput No

UserSettingsCreateManyLoginRecordInputEnvelope

Name Type Nullable
data UserSettingsCreateManyLoginRecordInput | UserSettingsCreateManyLoginRecordInput[] No
skipDuplicates Boolean No


DeviceUpdateToOneWithWhereWithoutLoginRecordInput

Name Type Nullable
where DeviceWhereInput No
data DeviceUpdateWithoutLoginRecordInput | DeviceUncheckedUpdateWithoutLoginRecordInput No

DeviceUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
Version VersionUpdateOneRequiredWithoutDeviceNestedInput No

DeviceUncheckedUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No


VersionUpdateToOneWithWhereWithoutLoginRecordInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutLoginRecordInput | VersionUncheckedUpdateWithoutLoginRecordInput No

VersionUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


OrganizationSettingsUpdateWithWhereUniqueWithoutLoginRecordInput

Name Type Nullable
where OrganizationSettingsWhereUniqueInput No
data OrganizationSettingsUpdateWithoutLoginRecordInput | OrganizationSettingsUncheckedUpdateWithoutLoginRecordInput No

OrganizationSettingsUpdateManyWithWhereWithoutLoginRecordInput

Name Type Nullable
where OrganizationSettingsScalarWhereInput No
data OrganizationSettingsUpdateManyMutationInput | OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordInput No

OrganizationSettingsScalarWhereInput

Name Type Nullable
AND OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] No
OR OrganizationSettingsScalarWhereInput[] No
NOT OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
language EnumLanguageFilter | Language No
time_format EnumTimeFormatFilter | TimeFormat No
date_format EnumDateFormatFilter | DateFormat No
timezone EnumTimezoneFilter | Timezone No
theme EnumThemeNullableFilter | Theme | Null Yes
email_notifications BoolFilter | Boolean No
phone_notification BoolFilter | Boolean No
push_notifications BoolFilter | Boolean No
two_factor_auth BoolNullableFilter | Boolean | Null Yes
loginRecordId IntNullableFilter | Int | Null Yes
accountDeactivation BoolNullableFilter | Boolean | Null Yes
avatar StringNullableFilter | String | Null Yes
clearBrowsingData BoolNullableFilter | Boolean | Null Yes
contactSupportLink StringNullableFilter | String | Null Yes
dataRetentionDays IntNullableFilter | Int | Null Yes
dataSharing BoolNullableFilter | Boolean | Null Yes
helpCenterLink StringNullableFilter | String | Null Yes
high_contrast_mode BoolNullableFilter | Boolean | Null Yes
in_app_notifications BoolNullableFilter | Boolean | Null Yes
key_board_shortcut BoolNullableFilter | Boolean | Null Yes
notification_frequency StringNullableFilter | String | Null Yes
notification_sound StringNullableFilter | String | Null Yes
notification_vibrate BoolNullableFilter | Boolean | Null Yes
password_reset BoolNullableFilter | Boolean | Null Yes
security_answer StringNullableFilter | String | Null Yes
security_question StringNullableFilter | String | Null Yes
username StringNullableFilter | String | Null Yes
version StringFilter | String No


UserUpdateWithWhereUniqueWithoutLoginRecordInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutLoginRecordInput | UserUncheckedUpdateWithoutLoginRecordInput No

UserUpdateManyWithWhereWithoutLoginRecordInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutLoginRecordInput No

UserScalarWhereInput

Name Type Nullable
AND UserScalarWhereInput | UserScalarWhereInput[] No
OR UserScalarWhereInput[] No
NOT UserScalarWhereInput | UserScalarWhereInput[] No
id IntFilter | Int No
username StringNullableFilter | String | Null Yes
email StringFilter | String No
password StringFilter | String No
status EnumAccountStatusFilter | AccountStatus No
ip StringFilter | String No
two_factor_auth IntFilter | Int No
social_login IntFilter | Int No
logins IntFilter | Int No
person IntFilter | Int No
settings IntFilter | Int No
version StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No


UserSettingsUpdateWithWhereUniqueWithoutLoginRecordInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
data UserSettingsUpdateWithoutLoginRecordInput | UserSettingsUncheckedUpdateWithoutLoginRecordInput No

UserSettingsUpdateManyWithWhereWithoutLoginRecordInput

Name Type Nullable
where UserSettingsScalarWhereInput No
data UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyWithoutLoginRecordInput No

UserSettingsScalarWhereInput

Name Type Nullable
AND UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No
OR UserSettingsScalarWhereInput[] No
NOT UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
language EnumLanguageFilter | Language No
time_format EnumTimeFormatFilter | TimeFormat No
date_format EnumDateFormatFilter | DateFormat No
timezone EnumTimezoneFilter | Timezone No
theme EnumThemeNullableFilter | Theme | Null Yes
email_notifications BoolFilter | Boolean No
phone_notification BoolFilter | Boolean No
push_notifications BoolFilter | Boolean No
two_factor_auth BoolNullableFilter | Boolean | Null Yes
login_record_id IntFilter | Int No
high_contrast_mode BoolNullableFilter | Boolean | Null Yes
in_app_notifications BoolNullableFilter | Boolean | Null Yes
key_board_shortcut BoolNullableFilter | Boolean | Null Yes
notification_frequency StringNullableFilter | String | Null Yes
notification_sound StringNullableFilter | String | Null Yes
notification_vibrate BoolNullableFilter | Boolean | Null Yes
password_reset BoolNullableFilter | Boolean | Null Yes
version StringFilter | String No
security_question IntNullableFilter | Int | Null Yes

DonationCreateWithoutMemberInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
Contact ContactCreateNestedManyWithoutDonationInput No
Organization OrganizationCreateNestedOneWithoutDonationInput No
Person PersonCreateNestedOneWithoutDonationInput No
Version VersionCreateNestedOneWithoutDonationInput No

DonationUncheckedCreateWithoutMemberInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
organization Int No
Contact ContactUncheckedCreateNestedManyWithoutDonationInput No

DonationCreateOrConnectWithoutMemberInput

Name Type Nullable
where DonationWhereUniqueInput No
create DonationCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput No

DonationCreateManyMemberInputEnvelope

Name Type Nullable
data DonationCreateManyMemberInput | DonationCreateManyMemberInput[] No
skipDuplicates Boolean No

ClubCreateWithoutMemberInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutMemberInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutMemberInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutMemberInput | ClubUncheckedCreateWithoutMemberInput No

PersonCreateWithoutMemberInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutMemberInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutMemberInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutMemberInput | PersonUncheckedCreateWithoutMemberInput No

VersionCreateWithoutMemberInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutMemberInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutMemberInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutMemberInput | VersionUncheckedCreateWithoutMemberInput No

RequestCreateWithoutMemberInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
Person PersonCreateNestedOneWithoutRequestInput No
Version VersionCreateNestedOneWithoutRequestInput No

RequestUncheckedCreateWithoutMemberInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
personId Int No

RequestCreateOrConnectWithoutMemberInput

Name Type Nullable
where RequestWhereUniqueInput No
create RequestCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput No

RequestCreateManyMemberInputEnvelope

Name Type Nullable
data RequestCreateManyMemberInput | RequestCreateManyMemberInput[] No
skipDuplicates Boolean No


DonationUpdateWithWhereUniqueWithoutMemberInput

Name Type Nullable
where DonationWhereUniqueInput No
data DonationUpdateWithoutMemberInput | DonationUncheckedUpdateWithoutMemberInput No

DonationUpdateManyWithWhereWithoutMemberInput

Name Type Nullable
where DonationScalarWhereInput No
data DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutMemberInput No

DonationScalarWhereInput

Name Type Nullable
AND DonationScalarWhereInput | DonationScalarWhereInput[] No
OR DonationScalarWhereInput[] No
NOT DonationScalarWhereInput | DonationScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
amount IntFilter | Int No
donated_at DateTimeFilter | DateTime No
version StringFilter | String No
person IntFilter | Int No
member IntFilter | Int No
organization IntFilter | Int No


ClubUpdateToOneWithWhereWithoutMemberInput

Name Type Nullable
where ClubWhereInput No
data ClubUpdateWithoutMemberInput | ClubUncheckedUpdateWithoutMemberInput No

ClubUpdateWithoutMemberInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No


PersonUpdateToOneWithWhereWithoutMemberInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutMemberInput | PersonUncheckedUpdateWithoutMemberInput No

PersonUpdateWithoutMemberInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutMemberInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutMemberInput | VersionUncheckedUpdateWithoutMemberInput No

VersionUpdateWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


RequestUpdateWithWhereUniqueWithoutMemberInput

Name Type Nullable
where RequestWhereUniqueInput No
data RequestUpdateWithoutMemberInput | RequestUncheckedUpdateWithoutMemberInput No

RequestUpdateManyWithWhereWithoutMemberInput

Name Type Nullable
where RequestScalarWhereInput No
data RequestUpdateManyMutationInput | RequestUncheckedUpdateManyWithoutMemberInput No

RequestScalarWhereInput

Name Type Nullable
AND RequestScalarWhereInput | RequestScalarWhereInput[] No
OR RequestScalarWhereInput[] No
NOT RequestScalarWhereInput | RequestScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
health_issue StringFilter | String No
blood_group EnumBloodGroupFilter | BloodGroup No
quantity IntFilter | Int No
donation_type StringFilter | String No
datetime DateTimeFilter | DateTime No
hospital_name StringFilter | String No
hospital_address StringFilter | String No
hospital_phone StringFilter | String No
hospital_email StringFilter | String No
version StringFilter | String No
memberId IntNullableFilter | Int | Null Yes
personId IntFilter | Int No

AmbulanceCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes
Contact ContactCreateNestedOneWithoutAmbulanceInput No
Person PersonCreateNestedOneWithoutAmbulanceInput No
Version VersionCreateNestedOneWithoutAmbulanceInput No

AmbulanceUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
version String No
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

AmbulanceCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
create AmbulanceCreateWithoutOrganizationInput | AmbulanceUncheckedCreateWithoutOrganizationInput No

AmbulanceCreateManyOrganizationInputEnvelope

Name Type Nullable
data AmbulanceCreateManyOrganizationInput | AmbulanceCreateManyOrganizationInput[] No
skipDuplicates Boolean No

DonationCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
Contact ContactCreateNestedManyWithoutDonationInput No
Member MemberCreateNestedOneWithoutDonationInput No
Person PersonCreateNestedOneWithoutDonationInput No
Version VersionCreateNestedOneWithoutDonationInput No

DonationUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No
Contact ContactUncheckedCreateNestedManyWithoutDonationInput No

DonationCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where DonationWhereUniqueInput No
create DonationCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput No

DonationCreateManyOrganizationInputEnvelope

Name Type Nullable
data DonationCreateManyOrganizationInput | DonationCreateManyOrganizationInput[] No
skipDuplicates Boolean No

ClubCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutOrganizationInput | ClubUncheckedCreateWithoutOrganizationInput No

OrganizationSettingsCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
LoginRecord LoginRecordCreateNestedOneWithoutOrganizationSettingsInput No
Version VersionCreateNestedOneWithoutOrganizationSettingsInput No

OrganizationSettingsUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
loginRecordId Int | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
version String No

OrganizationSettingsCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where OrganizationSettingsWhereUniqueInput No
create OrganizationSettingsCreateWithoutOrganizationInput | OrganizationSettingsUncheckedCreateWithoutOrganizationInput No

PersonCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutOrganizationInput | PersonUncheckedCreateWithoutOrganizationInput No

VersionCreateWithoutOrganizationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutOrganizationInput | VersionUncheckedCreateWithoutOrganizationInput No

SupportCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
Version VersionCreateNestedOneWithoutSupportInput No
SupportMessage SupportMessageCreateNestedManyWithoutSupportInput No

SupportUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutSupportInput No

SupportCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where SupportWhereUniqueInput No
create SupportCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput No

SupportCreateManyOrganizationInputEnvelope

Name Type Nullable
data SupportCreateManyOrganizationInput | SupportCreateManyOrganizationInput[] No
skipDuplicates Boolean No

SupportMessageCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
message String No
Person PersonCreateNestedOneWithoutSupportMessageInput No
Support SupportCreateNestedOneWithoutSupportMessageInput No
Version VersionCreateNestedOneWithoutSupportMessageInput No

SupportMessageUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
support Int No
message String No
author Int No
version String No

SupportMessageCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
create SupportMessageCreateWithoutOrganizationInput | SupportMessageUncheckedCreateWithoutOrganizationInput No

SupportMessageCreateManyOrganizationInputEnvelope

Name Type Nullable
data SupportMessageCreateManyOrganizationInput | SupportMessageCreateManyOrganizationInput[] No
skipDuplicates Boolean No

TeamCreateWithoutOrganizationInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
status String No
Person_Person_teamIdToTeam PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No
Person_Team_membersToPerson PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput No
Version VersionCreateNestedOneWithoutTeamInput No

TeamUncheckedCreateWithoutOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
version String No
members Int No
status String No
Person_Person_teamIdToTeam PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No

TeamCreateOrConnectWithoutOrganizationInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput No

TeamCreateManyOrganizationInputEnvelope

Name Type Nullable
data TeamCreateManyOrganizationInput | TeamCreateManyOrganizationInput[] No
skipDuplicates Boolean No


AmbulanceUpdateWithWhereUniqueWithoutOrganizationInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
data AmbulanceUpdateWithoutOrganizationInput | AmbulanceUncheckedUpdateWithoutOrganizationInput No

AmbulanceUpdateManyWithWhereWithoutOrganizationInput

Name Type Nullable
where AmbulanceScalarWhereInput No
data AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutOrganizationInput No


DonationUpdateWithWhereUniqueWithoutOrganizationInput

Name Type Nullable
where DonationWhereUniqueInput No
data DonationUpdateWithoutOrganizationInput | DonationUncheckedUpdateWithoutOrganizationInput No

DonationUpdateManyWithWhereWithoutOrganizationInput

Name Type Nullable
where DonationScalarWhereInput No
data DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutOrganizationInput No


ClubUpdateToOneWithWhereWithoutOrganizationInput

Name Type Nullable
where ClubWhereInput No
data ClubUpdateWithoutOrganizationInput | ClubUncheckedUpdateWithoutOrganizationInput No

ClubUpdateWithoutOrganizationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No


OrganizationSettingsUpdateToOneWithWhereWithoutOrganizationInput

Name Type Nullable
where OrganizationSettingsWhereInput No
data OrganizationSettingsUpdateWithoutOrganizationInput | OrganizationSettingsUncheckedUpdateWithoutOrganizationInput No

OrganizationSettingsUpdateWithoutOrganizationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
LoginRecord LoginRecordUpdateOneWithoutOrganizationSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationSettingsNestedInput No

OrganizationSettingsUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
loginRecordId Int | NullableIntFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No


PersonUpdateToOneWithWhereWithoutOrganizationInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutOrganizationInput | PersonUncheckedUpdateWithoutOrganizationInput No

PersonUpdateWithoutOrganizationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutOrganizationInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutOrganizationInput | VersionUncheckedUpdateWithoutOrganizationInput No

VersionUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


SupportUpdateWithWhereUniqueWithoutOrganizationInput

Name Type Nullable
where SupportWhereUniqueInput No
data SupportUpdateWithoutOrganizationInput | SupportUncheckedUpdateWithoutOrganizationInput No

SupportUpdateManyWithWhereWithoutOrganizationInput

Name Type Nullable
where SupportScalarWhereInput No
data SupportUpdateManyMutationInput | SupportUncheckedUpdateManyWithoutOrganizationInput No

SupportScalarWhereInput

Name Type Nullable
AND SupportScalarWhereInput | SupportScalarWhereInput[] No
OR SupportScalarWhereInput[] No
NOT SupportScalarWhereInput | SupportScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No
organization IntFilter | Int No
messages StringNullableFilter | String | Null Yes
status StringNullableFilter | String | Null Yes
priority IntFilter | Int No
subject StringNullableFilter | String | Null Yes


SupportMessageUpdateWithWhereUniqueWithoutOrganizationInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
data SupportMessageUpdateWithoutOrganizationInput | SupportMessageUncheckedUpdateWithoutOrganizationInput No

SupportMessageUpdateManyWithWhereWithoutOrganizationInput

Name Type Nullable
where SupportMessageScalarWhereInput No
data SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutOrganizationInput No

SupportMessageScalarWhereInput

Name Type Nullable
AND SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No
OR SupportMessageScalarWhereInput[] No
NOT SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
organization IntFilter | Int No
support IntFilter | Int No
message StringFilter | String No
author IntFilter | Int No
version StringFilter | String No


TeamUpdateWithWhereUniqueWithoutOrganizationInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutOrganizationInput | TeamUncheckedUpdateWithoutOrganizationInput No

TeamUpdateManyWithWhereWithoutOrganizationInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutOrganizationInput No

TeamScalarWhereInput

Name Type Nullable
AND TeamScalarWhereInput | TeamScalarWhereInput[] No
OR TeamScalarWhereInput[] No
NOT TeamScalarWhereInput | TeamScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
started_at DateTimeFilter | DateTime No
ended_at DateTimeFilter | DateTime No
organization IntFilter | Int No
version StringFilter | String No
members IntFilter | Int No
status StringFilter | String No


OrganizationUncheckedCreateWithoutOrganizationSettingsInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutOrganizationSettingsInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutOrganizationSettingsInput | OrganizationUncheckedCreateWithoutOrganizationSettingsInput No

OrganizationCreateManyOrganizationSettingsInputEnvelope

Name Type Nullable
data OrganizationCreateManyOrganizationSettingsInput | OrganizationCreateManyOrganizationSettingsInput[] No
skipDuplicates Boolean No

LoginRecordCreateWithoutOrganizationSettingsInput

Name Type Nullable
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
Device DeviceCreateNestedOneWithoutLoginRecordInput No
Version VersionCreateNestedOneWithoutLoginRecordInput No
User UserCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsCreateNestedManyWithoutLoginRecordInput No

LoginRecordUncheckedCreateWithoutOrganizationSettingsInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes
User UserUncheckedCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No

LoginRecordCreateOrConnectWithoutOrganizationSettingsInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
create LoginRecordCreateWithoutOrganizationSettingsInput | LoginRecordUncheckedCreateWithoutOrganizationSettingsInput No

VersionCreateWithoutOrganizationSettingsInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutOrganizationSettingsInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutOrganizationSettingsInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutOrganizationSettingsInput | VersionUncheckedCreateWithoutOrganizationSettingsInput No


OrganizationUpdateWithWhereUniqueWithoutOrganizationSettingsInput

Name Type Nullable
where OrganizationWhereUniqueInput No
data OrganizationUpdateWithoutOrganizationSettingsInput | OrganizationUncheckedUpdateWithoutOrganizationSettingsInput No

OrganizationUpdateManyWithWhereWithoutOrganizationSettingsInput

Name Type Nullable
where OrganizationScalarWhereInput No
data OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutOrganizationSettingsInput No


LoginRecordUpdateToOneWithWhereWithoutOrganizationSettingsInput

Name Type Nullable
where LoginRecordWhereInput No
data LoginRecordUpdateWithoutOrganizationSettingsInput | LoginRecordUncheckedUpdateWithoutOrganizationSettingsInput No

LoginRecordUpdateWithoutOrganizationSettingsInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Device DeviceUpdateOneWithoutLoginRecordNestedInput No
Version VersionUpdateOneRequiredWithoutLoginRecordNestedInput No
User UserUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateWithoutOrganizationSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes
User UserUncheckedUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No


VersionUpdateToOneWithWhereWithoutOrganizationSettingsInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutOrganizationSettingsInput | VersionUncheckedUpdateWithoutOrganizationSettingsInput No

VersionUpdateWithoutOrganizationSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutOrganizationSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

AmbulanceCreateWithoutPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes
Contact ContactCreateNestedOneWithoutAmbulanceInput No
Organization OrganizationCreateNestedOneWithoutAmbulanceInput No
Version VersionCreateNestedOneWithoutAmbulanceInput No

AmbulanceUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
version String No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

AmbulanceCreateOrConnectWithoutPersonInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
create AmbulanceCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput No

AmbulanceCreateManyPersonInputEnvelope

Name Type Nullable
data AmbulanceCreateManyPersonInput | AmbulanceCreateManyPersonInput[] No
skipDuplicates Boolean No

BloodCenterCreateWithoutPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
established_at DateTime No
title String No
Contact_BloodCenter_contactToContact ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput No
Version VersionCreateNestedOneWithoutBloodCenterInput No
BloodDonation BloodDonationCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
contact Int | Null Yes
title String No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterCreateOrConnectWithoutPersonInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
create BloodCenterCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput No

BloodCenterCreateManyPersonInputEnvelope

Name Type Nullable
data BloodCenterCreateManyPersonInput | BloodCenterCreateManyPersonInput[] No
skipDuplicates Boolean No

BloodDonationCreateWithoutPersonInput

Name Type Nullable
amount Int No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes
BloodCenter BloodCenterCreateNestedOneWithoutBloodDonationInput No
Version VersionCreateNestedOneWithoutBloodDonationInput No

BloodDonationUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
organization_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

BloodDonationCreateOrConnectWithoutPersonInput

Name Type Nullable
where BloodDonationWhereUniqueInput No
create BloodDonationCreateWithoutPersonInput | BloodDonationUncheckedCreateWithoutPersonInput No

BloodDonationCreateManyPersonInputEnvelope

Name Type Nullable
data BloodDonationCreateManyPersonInput | BloodDonationCreateManyPersonInput[] No
skipDuplicates Boolean No

ClubCreateWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
founder Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutPerson_Club_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput No

ClubCreateManyPerson_Club_chairmanToPersonInputEnvelope

Name Type Nullable
data ClubCreateManyPerson_Club_chairmanToPersonInput | ClubCreateManyPerson_Club_chairmanToPersonInput[] No
skipDuplicates Boolean No

ClubCreateWithoutPerson_Club_founderToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Version VersionCreateNestedOneWithoutClubInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutPerson_Club_founderToPersonInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutPerson_Club_founderToPersonInput | ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput No

ClubCreateManyPerson_Club_founderToPersonInputEnvelope

Name Type Nullable
data ClubCreateManyPerson_Club_founderToPersonInput | ClubCreateManyPerson_Club_founderToPersonInput[] No
skipDuplicates Boolean No

ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Version VersionCreateNestedOneWithoutClubInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput No

ClubCreateManyPerson_Club_vice_chairmanToPersonInputEnvelope

Name Type Nullable
data ClubCreateManyPerson_Club_vice_chairmanToPersonInput | ClubCreateManyPerson_Club_vice_chairmanToPersonInput[] No
skipDuplicates Boolean No

ContactCreateWithoutPerson_Contact_personToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutPerson_Contact_personToPersonInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutPerson_Contact_personToPersonInput | ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput No

ContactCreateManyPerson_Contact_personToPersonInputEnvelope

Name Type Nullable
data ContactCreateManyPerson_Contact_personToPersonInput | ContactCreateManyPerson_Contact_personToPersonInput[] No
skipDuplicates Boolean No

DonationCreateWithoutPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
Contact ContactCreateNestedManyWithoutDonationInput No
Member MemberCreateNestedOneWithoutDonationInput No
Organization OrganizationCreateNestedOneWithoutDonationInput No
Version VersionCreateNestedOneWithoutDonationInput No

DonationUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
member Int No
organization Int No
Contact ContactUncheckedCreateNestedManyWithoutDonationInput No

DonationCreateOrConnectWithoutPersonInput

Name Type Nullable
where DonationWhereUniqueInput No
create DonationCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput No

DonationCreateManyPersonInputEnvelope

Name Type Nullable
data DonationCreateManyPersonInput | DonationCreateManyPersonInput[] No
skipDuplicates Boolean No

MemberCreateWithoutPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Donation DonationCreateNestedManyWithoutMemberInput No
Club ClubCreateNestedOneWithoutMemberInput No
Version VersionCreateNestedOneWithoutMemberInput No
Request RequestCreateNestedManyWithoutMemberInput No

MemberUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Donation DonationUncheckedCreateNestedManyWithoutMemberInput No
Request RequestUncheckedCreateNestedManyWithoutMemberInput No

MemberCreateOrConnectWithoutPersonInput

Name Type Nullable
where MemberWhereUniqueInput No
create MemberCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput No

MemberCreateManyPersonInputEnvelope

Name Type Nullable
data MemberCreateManyPersonInput | MemberCreateManyPersonInput[] No
skipDuplicates Boolean No


OrganizationUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutPersonInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput No

OrganizationCreateManyPersonInputEnvelope

Name Type Nullable
data OrganizationCreateManyPersonInput | OrganizationCreateManyPersonInput[] No
skipDuplicates Boolean No

ContactCreateWithoutPerson_Person_contact_idToContactInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Version VersionCreateNestedOneWithoutContactInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No

ContactUncheckedCreateWithoutPerson_Person_contact_idToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No

ContactCreateOrConnectWithoutPerson_Person_contact_idToContactInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutPerson_Person_contact_idToContactInput | ContactUncheckedCreateWithoutPerson_Person_contact_idToContactInput No

TeamCreateWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
status String No
Person_Team_membersToPerson PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput No
Organization OrganizationCreateNestedOneWithoutTeamInput No
Version VersionCreateNestedOneWithoutTeamInput No

TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
members Int No
status String No

TeamCreateOrConnectWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput No

VersionCreateWithoutPersonInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutPersonInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutPersonInput | VersionUncheckedCreateWithoutPersonInput No

RequestCreateWithoutPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
Member MemberCreateNestedOneWithoutRequestInput No
Version VersionCreateNestedOneWithoutRequestInput No

RequestUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
memberId Int | Null Yes

RequestCreateOrConnectWithoutPersonInput

Name Type Nullable
where RequestWhereUniqueInput No
create RequestCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput No

RequestCreateManyPersonInputEnvelope

Name Type Nullable
data RequestCreateManyPersonInput | RequestCreateManyPersonInput[] No
skipDuplicates Boolean No

SupportMessageCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
message String No
Organization OrganizationCreateNestedOneWithoutSupportMessageInput No
Support SupportCreateNestedOneWithoutSupportMessageInput No
Version VersionCreateNestedOneWithoutSupportMessageInput No

SupportMessageUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
version String No

SupportMessageCreateOrConnectWithoutPersonInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
create SupportMessageCreateWithoutPersonInput | SupportMessageUncheckedCreateWithoutPersonInput No

SupportMessageCreateManyPersonInputEnvelope

Name Type Nullable
data SupportMessageCreateManyPersonInput | SupportMessageCreateManyPersonInput[] No
skipDuplicates Boolean No

TeamCreateWithoutPerson_Team_membersToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
status String No
Person_Person_teamIdToTeam PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No
Organization OrganizationCreateNestedOneWithoutTeamInput No
Version VersionCreateNestedOneWithoutTeamInput No

TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
status String No
Person_Person_teamIdToTeam PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No

TeamCreateOrConnectWithoutPerson_Team_membersToPersonInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutPerson_Team_membersToPersonInput | TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput No

TeamCreateManyPerson_Team_membersToPersonInputEnvelope

Name Type Nullable
data TeamCreateManyPerson_Team_membersToPersonInput | TeamCreateManyPerson_Team_membersToPersonInput[] No
skipDuplicates Boolean No

UserCreateWithoutPersonInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutPersonInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutPersonInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput No

UserCreateManyPersonInputEnvelope

Name Type Nullable
data UserCreateManyPersonInput | UserCreateManyPersonInput[] No
skipDuplicates Boolean No


AmbulanceUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
data AmbulanceUpdateWithoutPersonInput | AmbulanceUncheckedUpdateWithoutPersonInput No

AmbulanceUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where AmbulanceScalarWhereInput No
data AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutPersonInput No


BloodCenterUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
data BloodCenterUpdateWithoutPersonInput | BloodCenterUncheckedUpdateWithoutPersonInput No

BloodCenterUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where BloodCenterScalarWhereInput No
data BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyWithoutPersonInput No


BloodDonationUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where BloodDonationWhereUniqueInput No
data BloodDonationUpdateWithoutPersonInput | BloodDonationUncheckedUpdateWithoutPersonInput No

BloodDonationUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where BloodDonationScalarWhereInput No
data BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyWithoutPersonInput No


ClubUpdateWithWhereUniqueWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
where ClubWhereUniqueInput No
data ClubUpdateWithoutPerson_Club_chairmanToPersonInput | ClubUncheckedUpdateWithoutPerson_Club_chairmanToPersonInput No

ClubUpdateManyWithWhereWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
where ClubScalarWhereInput No
data ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonInput No


ClubUpdateWithWhereUniqueWithoutPerson_Club_founderToPersonInput

Name Type Nullable
where ClubWhereUniqueInput No
data ClubUpdateWithoutPerson_Club_founderToPersonInput | ClubUncheckedUpdateWithoutPerson_Club_founderToPersonInput No

ClubUpdateManyWithWhereWithoutPerson_Club_founderToPersonInput

Name Type Nullable
where ClubScalarWhereInput No
data ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonInput No


ClubUpdateWithWhereUniqueWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
where ClubWhereUniqueInput No
data ClubUpdateWithoutPerson_Club_vice_chairmanToPersonInput | ClubUncheckedUpdateWithoutPerson_Club_vice_chairmanToPersonInput No

ClubUpdateManyWithWhereWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
where ClubScalarWhereInput No
data ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonInput No


ContactUpdateWithWhereUniqueWithoutPerson_Contact_personToPersonInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutPerson_Contact_personToPersonInput | ContactUncheckedUpdateWithoutPerson_Contact_personToPersonInput No

ContactUpdateManyWithWhereWithoutPerson_Contact_personToPersonInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonInput No


DonationUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where DonationWhereUniqueInput No
data DonationUpdateWithoutPersonInput | DonationUncheckedUpdateWithoutPersonInput No

DonationUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where DonationScalarWhereInput No
data DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutPersonInput No


MemberUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where MemberWhereUniqueInput No
data MemberUpdateWithoutPersonInput | MemberUncheckedUpdateWithoutPersonInput No

MemberUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where MemberScalarWhereInput No
data MemberUpdateManyMutationInput | MemberUncheckedUpdateManyWithoutPersonInput No


OrganizationUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where OrganizationWhereUniqueInput No
data OrganizationUpdateWithoutPersonInput | OrganizationUncheckedUpdateWithoutPersonInput No

OrganizationUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where OrganizationScalarWhereInput No
data OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutPersonInput No


ContactUpdateToOneWithWhereWithoutPerson_Person_contact_idToContactInput

Name Type Nullable
where ContactWhereInput No
data ContactUpdateWithoutPerson_Person_contact_idToContactInput | ContactUncheckedUpdateWithoutPerson_Person_contact_idToContactInput No

ContactUpdateWithoutPerson_Person_contact_idToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No

ContactUncheckedUpdateWithoutPerson_Person_contact_idToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No


TeamUpdateToOneWithWhereWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
where TeamWhereInput No
data TeamUpdateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedUpdateWithoutPerson_Person_teamIdToTeamInput No

TeamUpdateWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Team_membersToPerson PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput No
Organization OrganizationUpdateOneRequiredWithoutTeamNestedInput No
Version VersionUpdateOneRequiredWithoutTeamNestedInput No

TeamUncheckedUpdateWithoutPerson_Person_teamIdToTeamInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No


VersionUpdateToOneWithWhereWithoutPersonInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutPersonInput | VersionUncheckedUpdateWithoutPersonInput No

VersionUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


RequestUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where RequestWhereUniqueInput No
data RequestUpdateWithoutPersonInput | RequestUncheckedUpdateWithoutPersonInput No

RequestUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where RequestScalarWhereInput No
data RequestUpdateManyMutationInput | RequestUncheckedUpdateManyWithoutPersonInput No


SupportMessageUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
data SupportMessageUpdateWithoutPersonInput | SupportMessageUncheckedUpdateWithoutPersonInput No

SupportMessageUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where SupportMessageScalarWhereInput No
data SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutPersonInput No


TeamUpdateWithWhereUniqueWithoutPerson_Team_membersToPersonInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutPerson_Team_membersToPersonInput | TeamUncheckedUpdateWithoutPerson_Team_membersToPersonInput No

TeamUpdateManyWithWhereWithoutPerson_Team_membersToPersonInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonInput No

UserUpsertWithWhereUniqueWithoutPersonInput

Name Type Nullable
where UserWhereUniqueInput No
update UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput No
create UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput No

UserUpdateWithWhereUniqueWithoutPersonInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput No

UserUpdateManyWithWhereWithoutPersonInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutPersonInput No

MemberCreateWithoutRequestInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Donation DonationCreateNestedManyWithoutMemberInput No
Club ClubCreateNestedOneWithoutMemberInput No
Person PersonCreateNestedOneWithoutMemberInput No
Version VersionCreateNestedOneWithoutMemberInput No

MemberUncheckedCreateWithoutRequestInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes
Donation DonationUncheckedCreateNestedManyWithoutMemberInput No

MemberCreateOrConnectWithoutRequestInput

Name Type Nullable
where MemberWhereUniqueInput No
create MemberCreateWithoutRequestInput | MemberUncheckedCreateWithoutRequestInput No

PersonCreateWithoutRequestInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutRequestInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutRequestInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutRequestInput | PersonUncheckedCreateWithoutRequestInput No

VersionCreateWithoutRequestInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutRequestInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutRequestInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutRequestInput | VersionUncheckedCreateWithoutRequestInput No


MemberUpdateToOneWithWhereWithoutRequestInput

Name Type Nullable
where MemberWhereInput No
data MemberUpdateWithoutRequestInput | MemberUncheckedUpdateWithoutRequestInput No

MemberUpdateWithoutRequestInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Donation DonationUpdateManyWithoutMemberNestedInput No
Club ClubUpdateOneWithoutMemberNestedInput No
Person PersonUpdateOneWithoutMemberNestedInput No
Version VersionUpdateOneRequiredWithoutMemberNestedInput No

MemberUncheckedUpdateWithoutRequestInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
Donation DonationUncheckedUpdateManyWithoutMemberNestedInput No


PersonUpdateToOneWithWhereWithoutRequestInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutRequestInput | PersonUncheckedUpdateWithoutRequestInput No

PersonUpdateWithoutRequestInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutRequestInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


VersionUpdateToOneWithWhereWithoutRequestInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutRequestInput | VersionUncheckedUpdateWithoutRequestInput No

VersionUpdateWithoutRequestInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutRequestInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

UserCreateWithoutSecurityQuestionInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutSecurityQuestionInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutSecurityQuestionInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSecurityQuestionInput | UserUncheckedCreateWithoutSecurityQuestionInput No

VersionCreateWithoutSecurityQuestionInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutSecurityQuestionInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutSecurityQuestionInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutSecurityQuestionInput | VersionUncheckedCreateWithoutSecurityQuestionInput No

UserSettingsCreateWithoutSecurityQuestionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
User UserCreateNestedManyWithoutUserSettingsInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserSettingsInput No
Version VersionCreateNestedOneWithoutUserSettingsInput No

UserSettingsUncheckedCreateWithoutSecurityQuestionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No
User UserUncheckedCreateNestedManyWithoutUserSettingsInput No

UserSettingsCreateOrConnectWithoutSecurityQuestionInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
create UserSettingsCreateWithoutSecurityQuestionInput | UserSettingsUncheckedCreateWithoutSecurityQuestionInput No

UserSettingsCreateManySecurityQuestionInputEnvelope

Name Type Nullable
data UserSettingsCreateManySecurityQuestionInput | UserSettingsCreateManySecurityQuestionInput[] No
skipDuplicates Boolean No


UserUpdateToOneWithWhereWithoutSecurityQuestionInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutSecurityQuestionInput | UserUncheckedUpdateWithoutSecurityQuestionInput No

UserUpdateWithoutSecurityQuestionInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutSecurityQuestionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No


VersionUpdateToOneWithWhereWithoutSecurityQuestionInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutSecurityQuestionInput | VersionUncheckedUpdateWithoutSecurityQuestionInput No

VersionUpdateWithoutSecurityQuestionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutSecurityQuestionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


UserSettingsUpdateWithWhereUniqueWithoutSecurityQuestionInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
data UserSettingsUpdateWithoutSecurityQuestionInput | UserSettingsUncheckedUpdateWithoutSecurityQuestionInput No

UserSettingsUpdateManyWithWhereWithoutSecurityQuestionInput

Name Type Nullable
where UserSettingsScalarWhereInput No
data UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyWithoutSecurityQuestionInput No

VersionCreateWithoutSocialMediaLinksInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutSocialMediaLinksInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutSocialMediaLinksInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutSocialMediaLinksInput | VersionUncheckedCreateWithoutSocialMediaLinksInput No

UserCreateWithoutSocialMediaLinksInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutSocialMediaLinksInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutSocialMediaLinksInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput No

UserCreateManySocialMediaLinksInputEnvelope

Name Type Nullable
data UserCreateManySocialMediaLinksInput | UserCreateManySocialMediaLinksInput[] No
skipDuplicates Boolean No


VersionUpdateToOneWithWhereWithoutSocialMediaLinksInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutSocialMediaLinksInput | VersionUncheckedUpdateWithoutSocialMediaLinksInput No

VersionUpdateWithoutSocialMediaLinksInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutSocialMediaLinksInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


UserUpdateWithWhereUniqueWithoutSocialMediaLinksInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutSocialMediaLinksInput | UserUncheckedUpdateWithoutSocialMediaLinksInput No

UserUpdateManyWithWhereWithoutSocialMediaLinksInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutSocialMediaLinksInput No


OrganizationUncheckedCreateWithoutSupportInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutSupportInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutSupportInput | OrganizationUncheckedCreateWithoutSupportInput No

VersionCreateWithoutSupportInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutSupportInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutSupportInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutSupportInput | VersionUncheckedCreateWithoutSupportInput No

SupportMessageCreateWithoutSupportInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
message String No
Person PersonCreateNestedOneWithoutSupportMessageInput No
Organization OrganizationCreateNestedOneWithoutSupportMessageInput No
Version VersionCreateNestedOneWithoutSupportMessageInput No

SupportMessageUncheckedCreateWithoutSupportInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
message String No
author Int No
version String No

SupportMessageCreateOrConnectWithoutSupportInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
create SupportMessageCreateWithoutSupportInput | SupportMessageUncheckedCreateWithoutSupportInput No

SupportMessageCreateManySupportInputEnvelope

Name Type Nullable
data SupportMessageCreateManySupportInput | SupportMessageCreateManySupportInput[] No
skipDuplicates Boolean No


OrganizationUpdateToOneWithWhereWithoutSupportInput

Name Type Nullable
where OrganizationWhereInput No
data OrganizationUpdateWithoutSupportInput | OrganizationUncheckedUpdateWithoutSupportInput No

OrganizationUpdateWithoutSupportInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutSupportInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No


VersionUpdateToOneWithWhereWithoutSupportInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutSupportInput | VersionUncheckedUpdateWithoutSupportInput No

VersionUpdateWithoutSupportInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutSupportInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


SupportMessageUpdateWithWhereUniqueWithoutSupportInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
data SupportMessageUpdateWithoutSupportInput | SupportMessageUncheckedUpdateWithoutSupportInput No

SupportMessageUpdateManyWithWhereWithoutSupportInput

Name Type Nullable
where SupportMessageScalarWhereInput No
data SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutSupportInput No

PersonCreateWithoutSupportMessageInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutSupportMessageInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutSupportMessageInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutSupportMessageInput | PersonUncheckedCreateWithoutSupportMessageInput No


OrganizationUncheckedCreateWithoutSupportMessageInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutSupportMessageInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutSupportMessageInput | OrganizationUncheckedCreateWithoutSupportMessageInput No

SupportCreateWithoutSupportMessageInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
Organization OrganizationCreateNestedOneWithoutSupportInput No
Version VersionCreateNestedOneWithoutSupportInput No

SupportUncheckedCreateWithoutSupportMessageInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
organization Int No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes

SupportCreateOrConnectWithoutSupportMessageInput

Name Type Nullable
where SupportWhereUniqueInput No
create SupportCreateWithoutSupportMessageInput | SupportUncheckedCreateWithoutSupportMessageInput No

VersionCreateWithoutSupportMessageInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutSupportMessageInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutSupportMessageInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutSupportMessageInput | VersionUncheckedCreateWithoutSupportMessageInput No


PersonUpdateToOneWithWhereWithoutSupportMessageInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutSupportMessageInput | PersonUncheckedUpdateWithoutSupportMessageInput No

PersonUpdateWithoutSupportMessageInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutSupportMessageInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


OrganizationUpdateToOneWithWhereWithoutSupportMessageInput

Name Type Nullable
where OrganizationWhereInput No
data OrganizationUpdateWithoutSupportMessageInput | OrganizationUncheckedUpdateWithoutSupportMessageInput No

OrganizationUpdateWithoutSupportMessageInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutSupportMessageInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No


SupportUpdateToOneWithWhereWithoutSupportMessageInput

Name Type Nullable
where SupportWhereInput No
data SupportUpdateWithoutSupportMessageInput | SupportUncheckedUpdateWithoutSupportMessageInput No

SupportUpdateWithoutSupportMessageInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUpdateOneRequiredWithoutSupportNestedInput No
Version VersionUpdateOneRequiredWithoutSupportNestedInput No

SupportUncheckedUpdateWithoutSupportMessageInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes


VersionUpdateToOneWithWhereWithoutSupportMessageInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutSupportMessageInput | VersionUncheckedUpdateWithoutSupportMessageInput No

VersionUpdateWithoutSupportMessageInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutSupportMessageInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

PersonCreateWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutTeam_Person_teamIdToTeamInput | PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput No

PersonCreateManyTeam_Person_teamIdToTeamInputEnvelope

Name Type Nullable
data PersonCreateManyTeam_Person_teamIdToTeamInput | PersonCreateManyTeam_Person_teamIdToTeamInput[] No
skipDuplicates Boolean No

PersonCreateWithoutTeam_Team_membersToPersonInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutTeam_Team_membersToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutTeam_Team_membersToPersonInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutTeam_Team_membersToPersonInput | PersonUncheckedCreateWithoutTeam_Team_membersToPersonInput No


OrganizationUncheckedCreateWithoutTeamInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
version String No
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutTeamInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutTeamInput | OrganizationUncheckedCreateWithoutTeamInput No

VersionCreateWithoutTeamInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutTeamInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutTeamInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutTeamInput | VersionUncheckedCreateWithoutTeamInput No


PersonUpdateWithWhereUniqueWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
where PersonWhereUniqueInput No
data PersonUpdateWithoutTeam_Person_teamIdToTeamInput | PersonUncheckedUpdateWithoutTeam_Person_teamIdToTeamInput No

PersonUpdateManyWithWhereWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
where PersonScalarWhereInput No
data PersonUpdateManyMutationInput | PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamInput No


PersonUpdateToOneWithWhereWithoutTeam_Team_membersToPersonInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutTeam_Team_membersToPersonInput | PersonUncheckedUpdateWithoutTeam_Team_membersToPersonInput No

PersonUpdateWithoutTeam_Team_membersToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutTeam_Team_membersToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No


OrganizationUpdateToOneWithWhereWithoutTeamInput

Name Type Nullable
where OrganizationWhereInput No
data OrganizationUpdateWithoutTeamInput | OrganizationUncheckedUpdateWithoutTeamInput No

OrganizationUpdateWithoutTeamInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutTeamInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No


VersionUpdateToOneWithWhereWithoutTeamInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutTeamInput | VersionUncheckedUpdateWithoutTeamInput No

VersionUpdateWithoutTeamInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutTeamInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

VersionCreateWithoutTwoFactorAuthInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutTwoFactorAuthInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutTwoFactorAuthInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutTwoFactorAuthInput | VersionUncheckedCreateWithoutTwoFactorAuthInput No

UserCreateWithoutTwoFactorAuthInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutTwoFactorAuthInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutTwoFactorAuthInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput No

UserCreateManyTwoFactorAuthInputEnvelope

Name Type Nullable
data UserCreateManyTwoFactorAuthInput | UserCreateManyTwoFactorAuthInput[] No
skipDuplicates Boolean No


VersionUpdateToOneWithWhereWithoutTwoFactorAuthInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutTwoFactorAuthInput | VersionUncheckedUpdateWithoutTwoFactorAuthInput No

VersionUpdateWithoutTwoFactorAuthInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutTwoFactorAuthInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


UserUpdateWithWhereUniqueWithoutTwoFactorAuthInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutTwoFactorAuthInput | UserUncheckedUpdateWithoutTwoFactorAuthInput No

UserUpdateManyWithWhereWithoutTwoFactorAuthInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutTwoFactorAuthInput No

SecurityQuestionCreateWithoutUserInput

Name Type Nullable
question String No
answer String No
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutSecurityQuestionInput No
UserSettings UserSettingsCreateNestedManyWithoutSecurityQuestionInput No

SecurityQuestionUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
question String No
answer String No
created_at DateTime No
updated_at DateTime No
version String No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutSecurityQuestionInput No

SecurityQuestionCreateOrConnectWithoutUserInput

Name Type Nullable
where SecurityQuestionWhereUniqueInput No
create SecurityQuestionCreateWithoutUserInput | SecurityQuestionUncheckedCreateWithoutUserInput No

SecurityQuestionCreateManyUserInputEnvelope

Name Type Nullable
data SecurityQuestionCreateManyUserInput | SecurityQuestionCreateManyUserInput[] No
skipDuplicates Boolean No

LoginRecordCreateWithoutUserInput

Name Type Nullable
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
Device DeviceCreateNestedOneWithoutLoginRecordInput No
Version VersionCreateNestedOneWithoutLoginRecordInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsCreateNestedManyWithoutLoginRecordInput No

LoginRecordUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No

LoginRecordCreateOrConnectWithoutUserInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
create LoginRecordCreateWithoutUserInput | LoginRecordUncheckedCreateWithoutUserInput No

PersonCreateWithoutUserInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Version VersionCreateNestedOneWithoutPersonInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No

PersonUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No

PersonCreateOrConnectWithoutUserInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput No

SocialMediaLinksCreateWithoutUserInput

Name Type Nullable
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutSocialMediaLinksInput No

SocialMediaLinksUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SocialMediaLinksCreateOrConnectWithoutUserInput

Name Type Nullable
where SocialMediaLinksWhereUniqueInput No
create SocialMediaLinksCreateWithoutUserInput | SocialMediaLinksUncheckedCreateWithoutUserInput No

TwoFactorAuthCreateWithoutUserInput

Name Type Nullable
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutTwoFactorAuthInput No

TwoFactorAuthUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

TwoFactorAuthCreateOrConnectWithoutUserInput

Name Type Nullable
where TwoFactorAuthWhereUniqueInput No
create TwoFactorAuthCreateWithoutUserInput | TwoFactorAuthUncheckedCreateWithoutUserInput No

UserSettingsCreateWithoutUserInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
LoginRecord LoginRecordCreateNestedOneWithoutUserSettingsInput No
SecurityQuestion SecurityQuestionCreateNestedOneWithoutUserSettingsInput No
Version VersionCreateNestedOneWithoutUserSettingsInput No

UserSettingsUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No
security_question Int | Null Yes

UserSettingsCreateOrConnectWithoutUserInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
create UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput No

VersionCreateWithoutUserInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutUserInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutUserInput | VersionUncheckedCreateWithoutUserInput No

UserRoleCreateWithoutUserInput

Name Type Nullable
name String No
created_at DateTime No
updated_at DateTime No
Version VersionCreateNestedOneWithoutUserRoleInput No

UserRoleUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
created_at DateTime No
updated_at DateTime No
version String No

UserRoleCreateOrConnectWithoutUserInput

Name Type Nullable
where UserRoleWhereUniqueInput No
create UserRoleCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput No

UserRoleCreateManyUserInputEnvelope

Name Type Nullable
data UserRoleCreateManyUserInput | UserRoleCreateManyUserInput[] No
skipDuplicates Boolean No


SecurityQuestionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SecurityQuestionWhereUniqueInput No
data SecurityQuestionUpdateWithoutUserInput | SecurityQuestionUncheckedUpdateWithoutUserInput No

SecurityQuestionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SecurityQuestionScalarWhereInput No
data SecurityQuestionUpdateManyMutationInput | SecurityQuestionUncheckedUpdateManyWithoutUserInput No

SecurityQuestionScalarWhereInput

Name Type Nullable
AND SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] No
OR SecurityQuestionScalarWhereInput[] No
NOT SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] No
id IntFilter | Int No
question StringFilter | String No
answer StringFilter | String No
userId IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No


LoginRecordUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where LoginRecordWhereInput No
data LoginRecordUpdateWithoutUserInput | LoginRecordUncheckedUpdateWithoutUserInput No

LoginRecordUpdateWithoutUserInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Device DeviceUpdateOneWithoutLoginRecordNestedInput No
Version VersionUpdateOneRequiredWithoutLoginRecordNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No


PersonUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where PersonWhereInput No
data PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput No

PersonUpdateWithoutUserInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No

PersonUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No


SocialMediaLinksUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where SocialMediaLinksWhereInput No
data SocialMediaLinksUpdateWithoutUserInput | SocialMediaLinksUncheckedUpdateWithoutUserInput No

SocialMediaLinksUpdateWithoutUserInput

Name Type Nullable
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutSocialMediaLinksNestedInput No

SocialMediaLinksUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No


TwoFactorAuthUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where TwoFactorAuthWhereInput No
data TwoFactorAuthUpdateWithoutUserInput | TwoFactorAuthUncheckedUpdateWithoutUserInput No

TwoFactorAuthUpdateWithoutUserInput

Name Type Nullable
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutTwoFactorAuthNestedInput No

TwoFactorAuthUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No


UserSettingsUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where UserSettingsWhereInput No
data UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput No

UserSettingsUpdateWithoutUserInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
LoginRecord LoginRecordUpdateOneRequiredWithoutUserSettingsNestedInput No
SecurityQuestion SecurityQuestionUpdateOneWithoutUserSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes


VersionUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutUserInput | VersionUncheckedUpdateWithoutUserInput No

VersionUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No


UserRoleUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where UserRoleWhereUniqueInput No
data UserRoleUpdateWithoutUserInput | UserRoleUncheckedUpdateWithoutUserInput No

UserRoleUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where UserRoleScalarWhereInput No
data UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyWithoutUserInput No

UserRoleScalarWhereInput

Name Type Nullable
AND UserRoleScalarWhereInput | UserRoleScalarWhereInput[] No
OR UserRoleScalarWhereInput[] No
NOT UserRoleScalarWhereInput | UserRoleScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No

UserCreateWithoutUserRoleInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No

UserUncheckedCreateWithoutUserRoleInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutUserRoleInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserRoleInput | UserUncheckedCreateWithoutUserRoleInput No

VersionCreateWithoutUserRoleInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutUserRoleInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutUserRoleInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutUserRoleInput | VersionUncheckedCreateWithoutUserRoleInput No


UserUpdateToOneWithWhereWithoutUserRoleInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutUserRoleInput | UserUncheckedUpdateWithoutUserRoleInput No

UserUpdateWithoutUserRoleInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No

UserUncheckedUpdateWithoutUserRoleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No


VersionUpdateToOneWithWhereWithoutUserRoleInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutUserRoleInput | VersionUncheckedUpdateWithoutUserRoleInput No

VersionUpdateWithoutUserRoleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutUserRoleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutVersionNestedInput No

UserCreateWithoutUserSettingsInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
Version VersionCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutUserSettingsInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
version String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutUserSettingsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput No

UserCreateManyUserSettingsInputEnvelope

Name Type Nullable
data UserCreateManyUserSettingsInput | UserCreateManyUserSettingsInput[] No
skipDuplicates Boolean No

LoginRecordCreateWithoutUserSettingsInput

Name Type Nullable
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
Device DeviceCreateNestedOneWithoutLoginRecordInput No
Version VersionCreateNestedOneWithoutLoginRecordInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutLoginRecordInput No
User UserCreateNestedManyWithoutLoginRecordInput No

LoginRecordUncheckedCreateWithoutUserSettingsInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No
User UserUncheckedCreateNestedManyWithoutLoginRecordInput No

LoginRecordCreateOrConnectWithoutUserSettingsInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
create LoginRecordCreateWithoutUserSettingsInput | LoginRecordUncheckedCreateWithoutUserSettingsInput No

SecurityQuestionCreateWithoutUserSettingsInput

Name Type Nullable
question String No
answer String No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedOneWithoutSecurityQuestionInput No
Version VersionCreateNestedOneWithoutSecurityQuestionInput No

SecurityQuestionUncheckedCreateWithoutUserSettingsInput

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SecurityQuestionCreateOrConnectWithoutUserSettingsInput

Name Type Nullable
where SecurityQuestionWhereUniqueInput No
create SecurityQuestionCreateWithoutUserSettingsInput | SecurityQuestionUncheckedCreateWithoutUserSettingsInput No

VersionCreateWithoutUserSettingsInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationCreateNestedManyWithoutVersionInput No
Club ClubCreateNestedManyWithoutVersionInput No
Contact ContactCreateNestedManyWithoutVersionInput No
Country CountryCreateNestedManyWithoutVersionInput No
Device DeviceCreateNestedManyWithoutVersionInput No
Donation DonationCreateNestedManyWithoutVersionInput No
Hospital HospitalCreateNestedManyWithoutVersionInput No
Location LocationCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordCreateNestedManyWithoutVersionInput No
Member MemberCreateNestedManyWithoutVersionInput No
Organization OrganizationCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutVersionInput No
Person PersonCreateNestedManyWithoutVersionInput No
Request RequestCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksCreateNestedManyWithoutVersionInput No
Support SupportCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageCreateNestedManyWithoutVersionInput No
Team TeamCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthCreateNestedManyWithoutVersionInput No
User UserCreateNestedManyWithoutVersionInput No
UserRole UserRoleCreateNestedManyWithoutVersionInput No

VersionUncheckedCreateWithoutUserSettingsInput

Name Type Nullable
id Int No
slug String No
title String No
description String | Null Yes
created_at DateTime No
updated_at DateTime No
version String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutVersionInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutVersionInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutVersionInput No
Club ClubUncheckedCreateNestedManyWithoutVersionInput No
Contact ContactUncheckedCreateNestedManyWithoutVersionInput No
Country CountryUncheckedCreateNestedManyWithoutVersionInput No
Device DeviceUncheckedCreateNestedManyWithoutVersionInput No
Donation DonationUncheckedCreateNestedManyWithoutVersionInput No
Hospital HospitalUncheckedCreateNestedManyWithoutVersionInput No
Location LocationUncheckedCreateNestedManyWithoutVersionInput No
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutVersionInput No
Member MemberUncheckedCreateNestedManyWithoutVersionInput No
Organization OrganizationUncheckedCreateNestedManyWithoutVersionInput No
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutVersionInput No
Person PersonUncheckedCreateNestedManyWithoutVersionInput No
Request RequestUncheckedCreateNestedManyWithoutVersionInput No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutVersionInput No
SocialMediaLinks SocialMediaLinksUncheckedCreateNestedManyWithoutVersionInput No
Support SupportUncheckedCreateNestedManyWithoutVersionInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutVersionInput No
Team TeamUncheckedCreateNestedManyWithoutVersionInput No
TwoFactorAuth TwoFactorAuthUncheckedCreateNestedManyWithoutVersionInput No
User UserUncheckedCreateNestedManyWithoutVersionInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutVersionInput No

VersionCreateOrConnectWithoutUserSettingsInput

Name Type Nullable
where VersionWhereUniqueInput No
create VersionCreateWithoutUserSettingsInput | VersionUncheckedCreateWithoutUserSettingsInput No


UserUpdateWithWhereUniqueWithoutUserSettingsInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutUserSettingsInput | UserUncheckedUpdateWithoutUserSettingsInput No

UserUpdateManyWithWhereWithoutUserSettingsInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutUserSettingsInput No


LoginRecordUpdateToOneWithWhereWithoutUserSettingsInput

Name Type Nullable
where LoginRecordWhereInput No
data LoginRecordUpdateWithoutUserSettingsInput | LoginRecordUncheckedUpdateWithoutUserSettingsInput No

LoginRecordUpdateWithoutUserSettingsInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Device DeviceUpdateOneWithoutLoginRecordNestedInput No
Version VersionUpdateOneRequiredWithoutLoginRecordNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutLoginRecordNestedInput No
User UserUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateWithoutUserSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No
User UserUncheckedUpdateManyWithoutLoginRecordNestedInput No


SecurityQuestionUpdateToOneWithWhereWithoutUserSettingsInput

Name Type Nullable
where SecurityQuestionWhereInput No
data SecurityQuestionUpdateWithoutUserSettingsInput | SecurityQuestionUncheckedUpdateWithoutUserSettingsInput No

SecurityQuestionUpdateWithoutUserSettingsInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUpdateOneRequiredWithoutSecurityQuestionNestedInput No
Version VersionUpdateOneRequiredWithoutSecurityQuestionNestedInput No

SecurityQuestionUncheckedUpdateWithoutUserSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No


VersionUpdateToOneWithWhereWithoutUserSettingsInput

Name Type Nullable
where VersionWhereInput No
data VersionUpdateWithoutUserSettingsInput | VersionUncheckedUpdateWithoutUserSettingsInput No

VersionUpdateWithoutUserSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUpdateManyWithoutVersionNestedInput No
Club ClubUpdateManyWithoutVersionNestedInput No
Contact ContactUpdateManyWithoutVersionNestedInput No
Country CountryUpdateManyWithoutVersionNestedInput No
Device DeviceUpdateManyWithoutVersionNestedInput No
Donation DonationUpdateManyWithoutVersionNestedInput No
Hospital HospitalUpdateManyWithoutVersionNestedInput No
Location LocationUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUpdateManyWithoutVersionNestedInput No
Member MemberUpdateManyWithoutVersionNestedInput No
Organization OrganizationUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutVersionNestedInput No
Person PersonUpdateManyWithoutVersionNestedInput No
Request RequestUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUpdateManyWithoutVersionNestedInput No
Support SupportUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUpdateManyWithoutVersionNestedInput No
Team TeamUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUpdateManyWithoutVersionNestedInput No
User UserUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUpdateManyWithoutVersionNestedInput No

VersionUncheckedUpdateWithoutUserSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutVersionNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutVersionNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutVersionNestedInput No
Club ClubUncheckedUpdateManyWithoutVersionNestedInput No
Contact ContactUncheckedUpdateManyWithoutVersionNestedInput No
Country CountryUncheckedUpdateManyWithoutVersionNestedInput No
Device DeviceUncheckedUpdateManyWithoutVersionNestedInput No
Donation DonationUncheckedUpdateManyWithoutVersionNestedInput No
Hospital HospitalUncheckedUpdateManyWithoutVersionNestedInput No
Location LocationUncheckedUpdateManyWithoutVersionNestedInput No
LoginRecord LoginRecordUncheckedUpdateManyWithoutVersionNestedInput No
Member MemberUncheckedUpdateManyWithoutVersionNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutVersionNestedInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutVersionNestedInput No
Person PersonUncheckedUpdateManyWithoutVersionNestedInput No
Request RequestUncheckedUpdateManyWithoutVersionNestedInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutVersionNestedInput No
SocialMediaLinks SocialMediaLinksUncheckedUpdateManyWithoutVersionNestedInput No
Support SupportUncheckedUpdateManyWithoutVersionNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutVersionNestedInput No
Team TeamUncheckedUpdateManyWithoutVersionNestedInput No
TwoFactorAuth TwoFactorAuthUncheckedUpdateManyWithoutVersionNestedInput No
User UserUncheckedUpdateManyWithoutVersionNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutVersionNestedInput No

AmbulanceCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes
Contact ContactCreateNestedOneWithoutAmbulanceInput No
Organization OrganizationCreateNestedOneWithoutAmbulanceInput No
Person PersonCreateNestedOneWithoutAmbulanceInput No

AmbulanceUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

AmbulanceCreateOrConnectWithoutVersionInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
create AmbulanceCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput No

AmbulanceCreateManyVersionInputEnvelope

Name Type Nullable
data AmbulanceCreateManyVersionInput | AmbulanceCreateManyVersionInput[] No
skipDuplicates Boolean No

BloodCenterCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
established_at DateTime No
title String No
Contact_BloodCenter_contactToContact ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput No
Person PersonCreateNestedOneWithoutBloodCenterInput No
BloodDonation BloodDonationCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
founder Int No
contact Int | Null Yes
title String No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput No

BloodCenterCreateOrConnectWithoutVersionInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
create BloodCenterCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput No

BloodCenterCreateManyVersionInputEnvelope

Name Type Nullable
data BloodCenterCreateManyVersionInput | BloodCenterCreateManyVersionInput[] No
skipDuplicates Boolean No

BloodDonationCreateWithoutVersionInput

Name Type Nullable
amount Int No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes
BloodCenter BloodCenterCreateNestedOneWithoutBloodDonationInput No
Person PersonCreateNestedOneWithoutBloodDonationInput No

BloodDonationUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

BloodDonationCreateOrConnectWithoutVersionInput

Name Type Nullable
where BloodDonationWhereUniqueInput No
create BloodDonationCreateWithoutVersionInput | BloodDonationUncheckedCreateWithoutVersionInput No

BloodDonationCreateManyVersionInputEnvelope

Name Type Nullable
data BloodDonationCreateManyVersionInput | BloodDonationCreateManyVersionInput[] No
skipDuplicates Boolean No

ClubCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
Person_Club_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput No
Contact_Club_contactToContact ContactCreateNestedOneWithoutClub_Club_contactToContactInput No
Person_Club_founderToPerson PersonCreateNestedOneWithoutClub_Club_founderToPersonInput No
Person_Club_vice_chairmanToPerson PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput No
Contact_Contact_clubToClub ContactCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberCreateNestedManyWithoutClubInput No
Organization OrganizationCreateNestedManyWithoutClubInput No

ClubUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
chairman Int No
founder Int No
vice_chairman Int No
Contact_Contact_clubToClub ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput No
Member MemberUncheckedCreateNestedManyWithoutClubInput No
Organization OrganizationUncheckedCreateNestedManyWithoutClubInput No

ClubCreateOrConnectWithoutVersionInput

Name Type Nullable
where ClubWhereUniqueInput No
create ClubCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput No

ClubCreateManyVersionInputEnvelope

Name Type Nullable
data ClubCreateManyVersionInput | ClubCreateManyVersionInput[] No
skipDuplicates Boolean No

ContactCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubCreateNestedManyWithoutContact_Club_contactToContactInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterCreateNestedOneWithoutContact_Contact_blood_centerToBloodCenterInput No
Club_Contact_clubToClub ClubCreateNestedOneWithoutContact_Contact_clubToClubInput No
Country CountryCreateNestedOneWithoutContactInput No
Donation DonationCreateNestedOneWithoutContactInput No
Hospital_Contact_hospitalToHospital HospitalCreateNestedOneWithoutContact_Contact_hospitalToHospitalInput No
Person_Contact_personToPerson PersonCreateNestedOneWithoutContact_Contact_personToPersonInput No
Hospital_Hospital_contactToContact HospitalCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutContactInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput No
Club_Club_contactToContact ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput No
Hospital_Hospital_contactToContact HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput No
Person_Person_contact_idToContact PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput No

ContactCreateOrConnectWithoutVersionInput

Name Type Nullable
where ContactWhereUniqueInput No
create ContactCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput No

ContactCreateManyVersionInputEnvelope

Name Type Nullable
data ContactCreateManyVersionInput | ContactCreateManyVersionInput[] No
skipDuplicates Boolean No

CountryCreateWithoutVersionInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Contact ContactCreateNestedManyWithoutCountryInput No

CountryUncheckedCreateWithoutVersionInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Contact ContactUncheckedCreateNestedManyWithoutCountryInput No

CountryCreateOrConnectWithoutVersionInput

Name Type Nullable
where CountryWhereUniqueInput No
create CountryCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput No

CountryCreateManyVersionInputEnvelope

Name Type Nullable
data CountryCreateManyVersionInput | CountryCreateManyVersionInput[] No
skipDuplicates Boolean No

DeviceCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
LoginRecord LoginRecordCreateNestedManyWithoutDeviceInput No

DeviceUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes
LoginRecord LoginRecordUncheckedCreateNestedManyWithoutDeviceInput No

DeviceCreateOrConnectWithoutVersionInput

Name Type Nullable
where DeviceWhereUniqueInput No
create DeviceCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput No

DeviceCreateManyVersionInputEnvelope

Name Type Nullable
data DeviceCreateManyVersionInput | DeviceCreateManyVersionInput[] No
skipDuplicates Boolean No

DonationCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
Contact ContactCreateNestedManyWithoutDonationInput No
Member MemberCreateNestedOneWithoutDonationInput No
Organization OrganizationCreateNestedOneWithoutDonationInput No
Person PersonCreateNestedOneWithoutDonationInput No

DonationUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
person Int No
member Int No
organization Int No
Contact ContactUncheckedCreateNestedManyWithoutDonationInput No

DonationCreateOrConnectWithoutVersionInput

Name Type Nullable
where DonationWhereUniqueInput No
create DonationCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput No

DonationCreateManyVersionInputEnvelope

Name Type Nullable
data DonationCreateManyVersionInput | DonationCreateManyVersionInput[] No
skipDuplicates Boolean No

HospitalCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No
Contact_Hospital_contactToContact ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput No
Location LocationCreateNestedOneWithoutHospitalInput No

HospitalUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
location Int | Null Yes
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput No

HospitalCreateOrConnectWithoutVersionInput

Name Type Nullable
where HospitalWhereUniqueInput No
create HospitalCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput No

HospitalCreateManyVersionInputEnvelope

Name Type Nullable
data HospitalCreateManyVersionInput | HospitalCreateManyVersionInput[] No
skipDuplicates Boolean No

LocationCreateWithoutVersionInput

Name Type Nullable
latitude Float No
longitude Float No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Hospital HospitalCreateNestedManyWithoutLocationInput No

LocationUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
latitude Float No
longitude Float No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
Hospital HospitalUncheckedCreateNestedManyWithoutLocationInput No

LocationCreateOrConnectWithoutVersionInput

Name Type Nullable
where LocationWhereUniqueInput No
create LocationCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput No

LocationCreateManyVersionInputEnvelope

Name Type Nullable
data LocationCreateManyVersionInput | LocationCreateManyVersionInput[] No
skipDuplicates Boolean No

LoginRecordCreateWithoutVersionInput

Name Type Nullable
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
Device DeviceCreateNestedOneWithoutLoginRecordInput No
OrganizationSettings OrganizationSettingsCreateNestedManyWithoutLoginRecordInput No
User UserCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsCreateNestedManyWithoutLoginRecordInput No

LoginRecordUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes
OrganizationSettings OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No
User UserUncheckedCreateNestedManyWithoutLoginRecordInput No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput No

LoginRecordCreateOrConnectWithoutVersionInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
create LoginRecordCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput No

LoginRecordCreateManyVersionInputEnvelope

Name Type Nullable
data LoginRecordCreateManyVersionInput | LoginRecordCreateManyVersionInput[] No
skipDuplicates Boolean No

MemberCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
Donation DonationCreateNestedManyWithoutMemberInput No
Club ClubCreateNestedOneWithoutMemberInput No
Person PersonCreateNestedOneWithoutMemberInput No
Request RequestCreateNestedManyWithoutMemberInput No

MemberUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes
Donation DonationUncheckedCreateNestedManyWithoutMemberInput No
Request RequestUncheckedCreateNestedManyWithoutMemberInput No

MemberCreateOrConnectWithoutVersionInput

Name Type Nullable
where MemberWhereUniqueInput No
create MemberCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput No

MemberCreateManyVersionInputEnvelope

Name Type Nullable
data MemberCreateManyVersionInput | MemberCreateManyVersionInput[] No
skipDuplicates Boolean No


OrganizationUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput No
Donation DonationUncheckedCreateNestedManyWithoutOrganizationInput No
Support SupportUncheckedCreateNestedManyWithoutOrganizationInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput No
Team TeamUncheckedCreateNestedManyWithoutOrganizationInput No

OrganizationCreateOrConnectWithoutVersionInput

Name Type Nullable
where OrganizationWhereUniqueInput No
create OrganizationCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput No

OrganizationCreateManyVersionInputEnvelope

Name Type Nullable
data OrganizationCreateManyVersionInput | OrganizationCreateManyVersionInput[] No
skipDuplicates Boolean No

OrganizationSettingsCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
Organization OrganizationCreateNestedManyWithoutOrganizationSettingsInput No
LoginRecord LoginRecordCreateNestedOneWithoutOrganizationSettingsInput No

OrganizationSettingsUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
loginRecordId Int | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
Organization OrganizationUncheckedCreateNestedManyWithoutOrganizationSettingsInput No

OrganizationSettingsCreateOrConnectWithoutVersionInput

Name Type Nullable
where OrganizationSettingsWhereUniqueInput No
create OrganizationSettingsCreateWithoutVersionInput | OrganizationSettingsUncheckedCreateWithoutVersionInput No

OrganizationSettingsCreateManyVersionInputEnvelope

Name Type Nullable
data OrganizationSettingsCreateManyVersionInput | OrganizationSettingsCreateManyVersionInput[] No
skipDuplicates Boolean No

PersonCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationCreateNestedManyWithoutPersonInput No
Member MemberCreateNestedManyWithoutPersonInput No
Organization OrganizationCreateNestedManyWithoutPersonInput No
Contact_Person_contact_idToContact ContactCreateNestedOneWithoutPerson_Person_contact_idToContactInput No
Team_Person_teamIdToTeam TeamCreateNestedOneWithoutPerson_Person_teamIdToTeamInput No
Request RequestCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserCreateNestedManyWithoutPersonInput No

PersonUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes
Ambulance AmbulanceUncheckedCreateNestedManyWithoutPersonInput No
BloodCenter BloodCenterUncheckedCreateNestedManyWithoutPersonInput No
BloodDonation BloodDonationUncheckedCreateNestedManyWithoutPersonInput No
Club_Club_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_chairmanToPersonInput No
Club_Club_founderToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_founderToPersonInput No
Club_Club_vice_chairmanToPerson ClubUncheckedCreateNestedManyWithoutPerson_Club_vice_chairmanToPersonInput No
Contact_Contact_personToPerson ContactUncheckedCreateNestedManyWithoutPerson_Contact_personToPersonInput No
Donation DonationUncheckedCreateNestedManyWithoutPersonInput No
Member MemberUncheckedCreateNestedManyWithoutPersonInput No
Organization OrganizationUncheckedCreateNestedManyWithoutPersonInput No
Request RequestUncheckedCreateNestedManyWithoutPersonInput No
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutPersonInput No
Team_Team_membersToPerson TeamUncheckedCreateNestedManyWithoutPerson_Team_membersToPersonInput No
User UserUncheckedCreateNestedManyWithoutPersonInput No

PersonCreateOrConnectWithoutVersionInput

Name Type Nullable
where PersonWhereUniqueInput No
create PersonCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput No

PersonCreateManyVersionInputEnvelope

Name Type Nullable
data PersonCreateManyVersionInput | PersonCreateManyVersionInput[] No
skipDuplicates Boolean No

RequestCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
Member MemberCreateNestedOneWithoutRequestInput No
Person PersonCreateNestedOneWithoutRequestInput No

RequestUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
memberId Int | Null Yes
personId Int No

RequestCreateOrConnectWithoutVersionInput

Name Type Nullable
where RequestWhereUniqueInput No
create RequestCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput No

RequestCreateManyVersionInputEnvelope

Name Type Nullable
data RequestCreateManyVersionInput | RequestCreateManyVersionInput[] No
skipDuplicates Boolean No

SecurityQuestionCreateWithoutVersionInput

Name Type Nullable
question String No
answer String No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedOneWithoutSecurityQuestionInput No
UserSettings UserSettingsCreateNestedManyWithoutSecurityQuestionInput No

SecurityQuestionUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No
UserSettings UserSettingsUncheckedCreateNestedManyWithoutSecurityQuestionInput No

SecurityQuestionCreateOrConnectWithoutVersionInput

Name Type Nullable
where SecurityQuestionWhereUniqueInput No
create SecurityQuestionCreateWithoutVersionInput | SecurityQuestionUncheckedCreateWithoutVersionInput No

SecurityQuestionCreateManyVersionInputEnvelope

Name Type Nullable
data SecurityQuestionCreateManyVersionInput | SecurityQuestionCreateManyVersionInput[] No
skipDuplicates Boolean No

SocialMediaLinksCreateWithoutVersionInput

Name Type Nullable
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedManyWithoutSocialMediaLinksInput No

SocialMediaLinksUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No
User UserUncheckedCreateNestedManyWithoutSocialMediaLinksInput No

SocialMediaLinksCreateOrConnectWithoutVersionInput

Name Type Nullable
where SocialMediaLinksWhereUniqueInput No
create SocialMediaLinksCreateWithoutVersionInput | SocialMediaLinksUncheckedCreateWithoutVersionInput No

SocialMediaLinksCreateManyVersionInputEnvelope

Name Type Nullable
data SocialMediaLinksCreateManyVersionInput | SocialMediaLinksCreateManyVersionInput[] No
skipDuplicates Boolean No

SupportCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
Organization OrganizationCreateNestedOneWithoutSupportInput No
SupportMessage SupportMessageCreateNestedManyWithoutSupportInput No

SupportUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes
SupportMessage SupportMessageUncheckedCreateNestedManyWithoutSupportInput No

SupportCreateOrConnectWithoutVersionInput

Name Type Nullable
where SupportWhereUniqueInput No
create SupportCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput No

SupportCreateManyVersionInputEnvelope

Name Type Nullable
data SupportCreateManyVersionInput | SupportCreateManyVersionInput[] No
skipDuplicates Boolean No

SupportMessageCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
message String No
Person PersonCreateNestedOneWithoutSupportMessageInput No
Organization OrganizationCreateNestedOneWithoutSupportMessageInput No
Support SupportCreateNestedOneWithoutSupportMessageInput No

SupportMessageUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
author Int No

SupportMessageCreateOrConnectWithoutVersionInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
create SupportMessageCreateWithoutVersionInput | SupportMessageUncheckedCreateWithoutVersionInput No

SupportMessageCreateManyVersionInputEnvelope

Name Type Nullable
data SupportMessageCreateManyVersionInput | SupportMessageCreateManyVersionInput[] No
skipDuplicates Boolean No

TeamCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
status String No
Person_Person_teamIdToTeam PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No
Person_Team_membersToPerson PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput No
Organization OrganizationCreateNestedOneWithoutTeamInput No

TeamUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
members Int No
status String No
Person_Person_teamIdToTeam PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput No

TeamCreateOrConnectWithoutVersionInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput No

TeamCreateManyVersionInputEnvelope

Name Type Nullable
data TeamCreateManyVersionInput | TeamCreateManyVersionInput[] No
skipDuplicates Boolean No

TwoFactorAuthCreateWithoutVersionInput

Name Type Nullable
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedManyWithoutTwoFactorAuthInput No

TwoFactorAuthUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
User UserUncheckedCreateNestedManyWithoutTwoFactorAuthInput No

TwoFactorAuthCreateOrConnectWithoutVersionInput

Name Type Nullable
where TwoFactorAuthWhereUniqueInput No
create TwoFactorAuthCreateWithoutVersionInput | TwoFactorAuthUncheckedCreateWithoutVersionInput No

TwoFactorAuthCreateManyVersionInputEnvelope

Name Type Nullable
data TwoFactorAuthCreateManyVersionInput | TwoFactorAuthCreateManyVersionInput[] No
skipDuplicates Boolean No

UserCreateWithoutVersionInput

Name Type Nullable
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionCreateNestedManyWithoutUserInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserInput No
Person PersonCreateNestedOneWithoutUserInput No
SocialMediaLinks SocialMediaLinksCreateNestedOneWithoutUserInput No
TwoFactorAuth TwoFactorAuthCreateNestedOneWithoutUserInput No
UserSettings UserSettingsCreateNestedOneWithoutUserInput No
UserRole UserRoleCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
created_at DateTime No
updated_at DateTime No
SecurityQuestion SecurityQuestionUncheckedCreateNestedManyWithoutUserInput No
UserRole UserRoleUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutVersionInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput No

UserCreateManyVersionInputEnvelope

Name Type Nullable
data UserCreateManyVersionInput | UserCreateManyVersionInput[] No
skipDuplicates Boolean No

UserRoleCreateWithoutVersionInput

Name Type Nullable
name String No
created_at DateTime No
updated_at DateTime No
User UserCreateNestedOneWithoutUserRoleInput No

UserRoleUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
name String No
user_id Int No
created_at DateTime No
updated_at DateTime No

UserRoleCreateOrConnectWithoutVersionInput

Name Type Nullable
where UserRoleWhereUniqueInput No
create UserRoleCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput No

UserRoleCreateManyVersionInputEnvelope

Name Type Nullable
data UserRoleCreateManyVersionInput | UserRoleCreateManyVersionInput[] No
skipDuplicates Boolean No

UserSettingsCreateWithoutVersionInput

Name Type Nullable
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
User UserCreateNestedManyWithoutUserSettingsInput No
LoginRecord LoginRecordCreateNestedOneWithoutUserSettingsInput No
SecurityQuestion SecurityQuestionCreateNestedOneWithoutUserSettingsInput No

UserSettingsUncheckedCreateWithoutVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_question Int | Null Yes
User UserUncheckedCreateNestedManyWithoutUserSettingsInput No

UserSettingsCreateOrConnectWithoutVersionInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
create UserSettingsCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput No

UserSettingsCreateManyVersionInputEnvelope

Name Type Nullable
data UserSettingsCreateManyVersionInput | UserSettingsCreateManyVersionInput[] No
skipDuplicates Boolean No


AmbulanceUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where AmbulanceWhereUniqueInput No
data AmbulanceUpdateWithoutVersionInput | AmbulanceUncheckedUpdateWithoutVersionInput No

AmbulanceUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where AmbulanceScalarWhereInput No
data AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutVersionInput No


BloodCenterUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where BloodCenterWhereUniqueInput No
data BloodCenterUpdateWithoutVersionInput | BloodCenterUncheckedUpdateWithoutVersionInput No

BloodCenterUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where BloodCenterScalarWhereInput No
data BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyWithoutVersionInput No


BloodDonationUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where BloodDonationWhereUniqueInput No
data BloodDonationUpdateWithoutVersionInput | BloodDonationUncheckedUpdateWithoutVersionInput No

BloodDonationUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where BloodDonationScalarWhereInput No
data BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyWithoutVersionInput No

ClubUpsertWithWhereUniqueWithoutVersionInput

Name Type Nullable
where ClubWhereUniqueInput No
update ClubUpdateWithoutVersionInput | ClubUncheckedUpdateWithoutVersionInput No
create ClubCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput No

ClubUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where ClubWhereUniqueInput No
data ClubUpdateWithoutVersionInput | ClubUncheckedUpdateWithoutVersionInput No

ClubUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where ClubScalarWhereInput No
data ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutVersionInput No


ContactUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where ContactWhereUniqueInput No
data ContactUpdateWithoutVersionInput | ContactUncheckedUpdateWithoutVersionInput No

ContactUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where ContactScalarWhereInput No
data ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutVersionInput No


CountryUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where CountryWhereUniqueInput No
data CountryUpdateWithoutVersionInput | CountryUncheckedUpdateWithoutVersionInput No

CountryUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where CountryScalarWhereInput No
data CountryUpdateManyMutationInput | CountryUncheckedUpdateManyWithoutVersionInput No

CountryScalarWhereInput

Name Type Nullable
AND CountryScalarWhereInput | CountryScalarWhereInput[] No
OR CountryScalarWhereInput[] No
NOT CountryScalarWhereInput | CountryScalarWhereInput[] No
alpha_3 StringFilter | String No
alpha_2 StringFilter | String No
numeric StringFilter | String No
name StringFilter | String No
version StringFilter | String No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes


DeviceUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where DeviceWhereUniqueInput No
data DeviceUpdateWithoutVersionInput | DeviceUncheckedUpdateWithoutVersionInput No

DeviceUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where DeviceScalarWhereInput No
data DeviceUpdateManyMutationInput | DeviceUncheckedUpdateManyWithoutVersionInput No

DeviceScalarWhereInput

Name Type Nullable
AND DeviceScalarWhereInput | DeviceScalarWhereInput[] No
OR DeviceScalarWhereInput[] No
NOT DeviceScalarWhereInput | DeviceScalarWhereInput[] No
id IntFilter | Int No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes
name StringNullableFilter | String | Null Yes
mac_address StringNullableFilter | String | Null Yes
model StringNullableFilter | String | Null Yes
os StringNullableFilter | String | Null Yes
os_version StringNullableFilter | String | Null Yes
device_id StringNullableFilter | String | Null Yes
brand StringNullableFilter | String | Null Yes
manufacturer StringNullableFilter | String | Null Yes
version StringFilter | String No


DonationUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where DonationWhereUniqueInput No
data DonationUpdateWithoutVersionInput | DonationUncheckedUpdateWithoutVersionInput No

DonationUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where DonationScalarWhereInput No
data DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutVersionInput No


HospitalUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where HospitalWhereUniqueInput No
data HospitalUpdateWithoutVersionInput | HospitalUncheckedUpdateWithoutVersionInput No

HospitalUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where HospitalScalarWhereInput No
data HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyWithoutVersionInput No


LocationUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where LocationWhereUniqueInput No
data LocationUpdateWithoutVersionInput | LocationUncheckedUpdateWithoutVersionInput No

LocationUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where LocationScalarWhereInput No
data LocationUpdateManyMutationInput | LocationUncheckedUpdateManyWithoutVersionInput No

LocationScalarWhereInput

Name Type Nullable
AND LocationScalarWhereInput | LocationScalarWhereInput[] No
OR LocationScalarWhereInput[] No
NOT LocationScalarWhereInput | LocationScalarWhereInput[] No
id IntFilter | Int No
latitude FloatFilter | Float No
longitude FloatFilter | Float No
version StringFilter | String No
created_at DateTimeNullableFilter | DateTime | Null Yes
updated_at DateTimeNullableFilter | DateTime | Null Yes


LoginRecordUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where LoginRecordWhereUniqueInput No
data LoginRecordUpdateWithoutVersionInput | LoginRecordUncheckedUpdateWithoutVersionInput No

LoginRecordUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where LoginRecordScalarWhereInput No
data LoginRecordUpdateManyMutationInput | LoginRecordUncheckedUpdateManyWithoutVersionInput No


MemberUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where MemberWhereUniqueInput No
data MemberUpdateWithoutVersionInput | MemberUncheckedUpdateWithoutVersionInput No

MemberUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where MemberScalarWhereInput No
data MemberUpdateManyMutationInput | MemberUncheckedUpdateManyWithoutVersionInput No


OrganizationUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where OrganizationWhereUniqueInput No
data OrganizationUpdateWithoutVersionInput | OrganizationUncheckedUpdateWithoutVersionInput No

OrganizationUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where OrganizationScalarWhereInput No
data OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutVersionInput No


OrganizationSettingsUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where OrganizationSettingsWhereUniqueInput No
data OrganizationSettingsUpdateWithoutVersionInput | OrganizationSettingsUncheckedUpdateWithoutVersionInput No

OrganizationSettingsUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where OrganizationSettingsScalarWhereInput No
data OrganizationSettingsUpdateManyMutationInput | OrganizationSettingsUncheckedUpdateManyWithoutVersionInput No


PersonUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where PersonWhereUniqueInput No
data PersonUpdateWithoutVersionInput | PersonUncheckedUpdateWithoutVersionInput No

PersonUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where PersonScalarWhereInput No
data PersonUpdateManyMutationInput | PersonUncheckedUpdateManyWithoutVersionInput No


RequestUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where RequestWhereUniqueInput No
data RequestUpdateWithoutVersionInput | RequestUncheckedUpdateWithoutVersionInput No

RequestUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where RequestScalarWhereInput No
data RequestUpdateManyMutationInput | RequestUncheckedUpdateManyWithoutVersionInput No


SecurityQuestionUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where SecurityQuestionWhereUniqueInput No
data SecurityQuestionUpdateWithoutVersionInput | SecurityQuestionUncheckedUpdateWithoutVersionInput No

SecurityQuestionUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where SecurityQuestionScalarWhereInput No
data SecurityQuestionUpdateManyMutationInput | SecurityQuestionUncheckedUpdateManyWithoutVersionInput No


SocialMediaLinksUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where SocialMediaLinksWhereUniqueInput No
data SocialMediaLinksUpdateWithoutVersionInput | SocialMediaLinksUncheckedUpdateWithoutVersionInput No

SocialMediaLinksUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where SocialMediaLinksScalarWhereInput No
data SocialMediaLinksUpdateManyMutationInput | SocialMediaLinksUncheckedUpdateManyWithoutVersionInput No

SocialMediaLinksScalarWhereInput

Name Type Nullable
AND SocialMediaLinksScalarWhereInput | SocialMediaLinksScalarWhereInput[] No
OR SocialMediaLinksScalarWhereInput[] No
NOT SocialMediaLinksScalarWhereInput | SocialMediaLinksScalarWhereInput[] No
id IntFilter | Int No
facebook StringNullableFilter | String | Null Yes
twitter StringNullableFilter | String | Null Yes
instagram StringNullableFilter | String | Null Yes
userId IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No


SupportUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where SupportWhereUniqueInput No
data SupportUpdateWithoutVersionInput | SupportUncheckedUpdateWithoutVersionInput No

SupportUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where SupportScalarWhereInput No
data SupportUpdateManyMutationInput | SupportUncheckedUpdateManyWithoutVersionInput No


SupportMessageUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where SupportMessageWhereUniqueInput No
data SupportMessageUpdateWithoutVersionInput | SupportMessageUncheckedUpdateWithoutVersionInput No

SupportMessageUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where SupportMessageScalarWhereInput No
data SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutVersionInput No

TeamUpsertWithWhereUniqueWithoutVersionInput

Name Type Nullable
where TeamWhereUniqueInput No
update TeamUpdateWithoutVersionInput | TeamUncheckedUpdateWithoutVersionInput No
create TeamCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput No

TeamUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutVersionInput | TeamUncheckedUpdateWithoutVersionInput No

TeamUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutVersionInput No


TwoFactorAuthUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where TwoFactorAuthWhereUniqueInput No
data TwoFactorAuthUpdateWithoutVersionInput | TwoFactorAuthUncheckedUpdateWithoutVersionInput No

TwoFactorAuthUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where TwoFactorAuthScalarWhereInput No
data TwoFactorAuthUpdateManyMutationInput | TwoFactorAuthUncheckedUpdateManyWithoutVersionInput No

TwoFactorAuthScalarWhereInput

Name Type Nullable
AND TwoFactorAuthScalarWhereInput | TwoFactorAuthScalarWhereInput[] No
OR TwoFactorAuthScalarWhereInput[] No
NOT TwoFactorAuthScalarWhereInput | TwoFactorAuthScalarWhereInput[] No
id IntFilter | Int No
is_enabled BoolFilter | Boolean No
secret_key StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
version StringFilter | String No

UserUpsertWithWhereUniqueWithoutVersionInput

Name Type Nullable
where UserWhereUniqueInput No
update UserUpdateWithoutVersionInput | UserUncheckedUpdateWithoutVersionInput No
create UserCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput No

UserUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutVersionInput | UserUncheckedUpdateWithoutVersionInput No

UserUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutVersionInput No


UserRoleUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where UserRoleWhereUniqueInput No
data UserRoleUpdateWithoutVersionInput | UserRoleUncheckedUpdateWithoutVersionInput No

UserRoleUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where UserRoleScalarWhereInput No
data UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyWithoutVersionInput No


UserSettingsUpdateWithWhereUniqueWithoutVersionInput

Name Type Nullable
where UserSettingsWhereUniqueInput No
data UserSettingsUpdateWithoutVersionInput | UserSettingsUncheckedUpdateWithoutVersionInput No

UserSettingsUpdateManyWithWhereWithoutVersionInput

Name Type Nullable
where UserSettingsScalarWhereInput No
data UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyWithoutVersionInput No

BloodDonationCreateManyBloodCenterInput

Name Type Nullable
id Int No
donor_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes

BloodDonationUpdateWithoutBloodCenterInput

Name Type Nullable
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes
Person PersonUpdateOneRequiredWithoutBloodDonationNestedInput No
Version VersionUpdateOneRequiredWithoutBloodDonationNestedInput No

BloodDonationUncheckedUpdateWithoutBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
donor_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodDonationUncheckedUpdateManyWithoutBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
donor_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

ContactUpdateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes

ContactCreateManyClub_Contact_clubToClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes

MemberCreateManyClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes

OrganizationCreateManyClubInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
version String No

ContactUpdateWithoutClub_Contact_clubToClubInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutClub_Contact_clubToClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes

MemberUpdateWithoutClubInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Donation DonationUpdateManyWithoutMemberNestedInput No
Person PersonUpdateOneWithoutMemberNestedInput No
Version VersionUpdateOneRequiredWithoutMemberNestedInput No
Request RequestUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateWithoutClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
Donation DonationUncheckedUpdateManyWithoutMemberNestedInput No
Request RequestUncheckedUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateManyWithoutClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

OrganizationUpdateWithoutClubInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateManyWithoutClubInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

AmbulanceCreateManyContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
version String No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
color String | Null Yes

BloodCenterCreateManyContact_BloodCenter_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
title String No

ClubCreateManyContact_Club_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
version String No
chairman Int No
founder Int No
vice_chairman Int No

HospitalCreateManyContact_Hospital_contactToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
location Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes

PersonCreateManyContact_Person_contact_idToContactInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes

AmbulanceUpdateWithoutContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUpdateOneWithoutAmbulanceNestedInput No
Person PersonUpdateOneRequiredWithoutAmbulanceNestedInput No
Version VersionUpdateOneRequiredWithoutAmbulanceNestedInput No

AmbulanceUncheckedUpdateWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceUncheckedUpdateManyWithoutContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodCenterUpdateWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
Person PersonUpdateOneRequiredWithoutBloodCenterNestedInput No
Version VersionUpdateOneRequiredWithoutBloodCenterNestedInput No
BloodDonation BloodDonationUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No

ClubUpdateWithoutContact_Club_contactToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutContact_Club_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateManyWithoutContact_Club_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No

HospitalUpdateWithoutContact_Hospital_contactToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No
Location LocationUpdateOneWithoutHospitalNestedInput No
Version VersionUpdateOneRequiredWithoutHospitalNestedInput No

HospitalUncheckedUpdateWithoutContact_Hospital_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No

HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes

PersonUpdateWithoutContact_Person_contact_idToContactInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutContact_Person_contact_idToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes

ContactCreateManyCountryInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes

ContactUpdateWithoutCountryInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutCountryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutCountryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes

LoginRecordCreateManyDeviceInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
version String No
created_at DateTime No
updated_at DateTime No

LoginRecordUpdateWithoutDeviceInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutLoginRecordNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutLoginRecordNestedInput No
User UserUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateWithoutDeviceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No
User UserUncheckedUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateManyWithoutDeviceInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

ContactCreateManyDonationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
hospital Int | Null Yes

ContactUpdateWithoutDonationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutDonationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes

ContactCreateManyHospital_Contact_hospitalToHospitalInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes

ContactUpdateWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes

HospitalCreateManyLocationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
version String No
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes

HospitalUpdateWithoutLocationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No
Contact_Hospital_contactToContact ContactUpdateOneWithoutHospital_Hospital_contactToContactNestedInput No
Version VersionUpdateOneRequiredWithoutHospitalNestedInput No

HospitalUncheckedUpdateWithoutLocationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No

HospitalUncheckedUpdateManyWithoutLocationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes

OrganizationSettingsCreateManyLoginRecordInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes
version String No

UserCreateManyLoginRecordInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

UserSettingsCreateManyLoginRecordInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No
security_question Int | Null Yes

OrganizationSettingsUpdateWithoutLoginRecordInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUpdateManyWithoutOrganizationSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationSettingsNestedInput No

OrganizationSettingsUncheckedUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Organization OrganizationUncheckedUpdateManyWithoutOrganizationSettingsNestedInput No

OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

UserUpdateWithoutLoginRecordInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserSettingsUpdateWithoutLoginRecordInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
User UserUpdateManyWithoutUserSettingsNestedInput No
SecurityQuestion SecurityQuestionUpdateOneWithoutUserSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes
User UserUncheckedUpdateManyWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateManyWithoutLoginRecordInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes

DonationCreateManyMemberInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
organization Int No

RequestCreateManyMemberInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
personId Int No


DonationUncheckedUpdateWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
Contact ContactUncheckedUpdateManyWithoutDonationNestedInput No

DonationUncheckedUpdateManyWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No

RequestUpdateWithoutMemberInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
Person PersonUpdateOneRequiredWithoutRequestNestedInput No
Version VersionUpdateOneRequiredWithoutRequestNestedInput No

RequestUncheckedUpdateWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
personId Int | IntFieldUpdateOperationsInput No

RequestUncheckedUpdateManyWithoutMemberInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
personId Int | IntFieldUpdateOperationsInput No

AmbulanceCreateManyOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
version String No
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

DonationCreateManyOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No

SupportCreateManyOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes

SupportMessageCreateManyOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
support Int No
message String No
author Int No
version String No

TeamCreateManyOrganizationInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
version String No
members Int No
status String No

AmbulanceUpdateWithoutOrganizationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes
Contact ContactUpdateOneWithoutAmbulanceNestedInput No
Person PersonUpdateOneRequiredWithoutAmbulanceNestedInput No
Version VersionUpdateOneRequiredWithoutAmbulanceNestedInput No

AmbulanceUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceUncheckedUpdateManyWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes


DonationUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
Contact ContactUncheckedUpdateManyWithoutDonationNestedInput No

DonationUncheckedUpdateManyWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No

SupportUpdateWithoutOrganizationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
Version VersionUpdateOneRequiredWithoutSupportNestedInput No
SupportMessage SupportMessageUpdateManyWithoutSupportNestedInput No

SupportUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
SupportMessage SupportMessageUncheckedUpdateManyWithoutSupportNestedInput No

SupportUncheckedUpdateManyWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes


SupportMessageUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

SupportMessageUncheckedUpdateManyWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

TeamUpdateWithoutOrganizationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No
Person_Team_membersToPerson PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutTeamNestedInput No

TeamUncheckedUpdateWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No

TeamUncheckedUpdateManyWithoutOrganizationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No

OrganizationCreateManyOrganizationSettingsInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
clubId Int | Null Yes
version String No

OrganizationUpdateWithoutOrganizationSettingsInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutOrganizationSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateManyWithoutOrganizationSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

AmbulanceCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
version String No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

BloodCenterCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
contact Int | Null Yes
title String No

BloodDonationCreateManyPersonInput

Name Type Nullable
id Int No
organization_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

ClubCreateManyPerson_Club_chairmanToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
founder Int No
vice_chairman Int No

ClubCreateManyPerson_Club_founderToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
vice_chairman Int No

ClubCreateManyPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No

ContactCreateManyPerson_Contact_personToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
version String No
country String | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes

DonationCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
member Int No
organization Int No

MemberCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes

OrganizationCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
organizationSettingsId Int No
clubId Int | Null Yes
version String No

RequestCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
memberId Int | Null Yes

SupportMessageCreateManyPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
version String No

TeamCreateManyPerson_Team_membersToPersonInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
status String No

UserCreateManyPersonInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

AmbulanceUpdateWithoutPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes
Contact ContactUpdateOneWithoutAmbulanceNestedInput No
Organization OrganizationUpdateOneWithoutAmbulanceNestedInput No
Version VersionUpdateOneRequiredWithoutAmbulanceNestedInput No

AmbulanceUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodCenterUpdateWithoutPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
Contact_BloodCenter_contactToContact ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput No
Version VersionUpdateOneRequiredWithoutBloodCenterNestedInput No
BloodDonation BloodDonationUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No

BloodDonationUpdateWithoutPersonInput

Name Type Nullable
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUpdateOneRequiredWithoutBloodDonationNestedInput No
Version VersionUpdateOneRequiredWithoutBloodDonationNestedInput No

BloodDonationUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
organization_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodDonationUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
organization_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

ClubUpdateWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No

ClubUpdateWithoutPerson_Club_founderToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutPerson_Club_founderToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No

ClubUpdateWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Version VersionUpdateOneRequiredWithoutClubNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No

ContactUpdateWithoutPerson_Contact_personToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Version VersionUpdateOneRequiredWithoutContactNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutPerson_Contact_personToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
version String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes


DonationUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
Contact ContactUncheckedUpdateManyWithoutDonationNestedInput No

DonationUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No

MemberUpdateWithoutPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Donation DonationUpdateManyWithoutMemberNestedInput No
Club ClubUpdateOneWithoutMemberNestedInput No
Version VersionUpdateOneRequiredWithoutMemberNestedInput No
Request RequestUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Donation DonationUncheckedUpdateManyWithoutMemberNestedInput No
Request RequestUncheckedUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes

OrganizationUpdateWithoutPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Version VersionUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

RequestUpdateWithoutPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
Member MemberUpdateOneWithoutRequestNestedInput No
Version VersionUpdateOneRequiredWithoutRequestNestedInput No

RequestUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
memberId Int | NullableIntFieldUpdateOperationsInput | Null Yes

RequestUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
memberId Int | NullableIntFieldUpdateOperationsInput | Null Yes


SupportMessageUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

SupportMessageUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

TeamUpdateWithoutPerson_Team_membersToPersonInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No
Organization OrganizationUpdateOneRequiredWithoutTeamNestedInput No
Version VersionUpdateOneRequiredWithoutTeamNestedInput No

TeamUncheckedUpdateWithoutPerson_Team_membersToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No

TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No

UserUpdateWithoutPersonInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutPersonInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserSettingsCreateManySecurityQuestionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
version String No

UserSettingsUpdateWithoutSecurityQuestionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
User UserUpdateManyWithoutUserSettingsNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserSettingsNestedInput No
Version VersionUpdateOneRequiredWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateWithoutSecurityQuestionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
User UserUncheckedUpdateManyWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateManyWithoutSecurityQuestionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No

UserCreateManySocialMediaLinksInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

UserUpdateWithoutSocialMediaLinksInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutSocialMediaLinksInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutSocialMediaLinksInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

SupportMessageCreateManySupportInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
message String No
author Int No
version String No


SupportMessageUncheckedUpdateWithoutSupportInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

SupportMessageUncheckedUpdateManyWithoutSupportInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

PersonCreateManyTeam_Person_teamIdToTeamInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
version String No
avatar String | Null Yes
contact_id Int No
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes

PersonUpdateWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Version VersionUpdateOneRequiredWithoutPersonNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
version String | StringFieldUpdateOperationsInput No
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes

UserCreateManyTwoFactorAuthInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

UserUpdateWithoutTwoFactorAuthInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutTwoFactorAuthInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutTwoFactorAuthInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

SecurityQuestionCreateManyUserInput

Name Type Nullable
id Int No
question String No
answer String No
created_at DateTime No
updated_at DateTime No
version String No

UserRoleCreateManyUserInput

Name Type Nullable
id Int No
name String No
created_at DateTime No
updated_at DateTime No
version String No

SecurityQuestionUpdateWithoutUserInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutSecurityQuestionNestedInput No
UserSettings UserSettingsUpdateManyWithoutSecurityQuestionNestedInput No

SecurityQuestionUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput No

SecurityQuestionUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

UserRoleUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Version VersionUpdateOneRequiredWithoutUserRoleNestedInput No

UserRoleUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

UserRoleUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No

UserCreateManyUserSettingsInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
version String No
created_at DateTime No
updated_at DateTime No

UserUpdateWithoutUserSettingsInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
Version VersionUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutUserSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutUserSettingsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
version String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

AmbulanceCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String | Null Yes
person Int No
organization Int | Null Yes
equipment AmbulanceCreateequipmentInput | String No
contact Int | Null Yes
color String | Null Yes

BloodCenterCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
founder Int No
contact Int | Null Yes
title String No

BloodDonationCreateManyVersionInput

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No
donated_at DateTime No
referred_by String | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationCreatebagsInput | String No
media_done String | Null Yes
media_used String | Null Yes
incubation String | Null Yes
note String | Null Yes
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
cabin_no String | Null Yes
reg_no String | Null Yes

ClubCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
chairman Int No
founder Int No
vice_chairman Int No

ContactCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String | Null Yes
state String No
city String No
zip String No
phone String No
phone_1 String | Null Yes
fax String | Null Yes
email String | Null Yes
email_1 String | Null Yes
website String | Null Yes
social_media NullableJsonNullValueInput | Json No
country String | Null Yes
person Int | Null Yes
club Int | Null Yes
blood_center Int | Null Yes
donation Int | Null Yes
hospital Int | Null Yes

CountryCreateManyVersionInput

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes

DeviceCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes
name String | Null Yes
mac_address String | Null Yes
model String | Null Yes
os String | Null Yes
os_version String | Null Yes
device_id String | Null Yes
brand String | Null Yes
manufacturer String | Null Yes

DonationCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
person Int No
member Int No
organization Int No

HospitalCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String | Null Yes
bed_count Int | Null Yes
emergency_room Boolean | Null Yes
services HospitalCreateservicesInput | String No
specialties HospitalCreatespecialtiesInput | String No
rating Float | Null Yes
facility_type FacilityType | Null Yes
ownership String | Null Yes
insurance_accepted String | Null Yes
operating_hours String | Null Yes
infrastructure String | Null Yes
security_controls String | Null Yes
location Int | Null Yes
contact Int | Null Yes
founder Int | Null Yes
director Int | Null Yes
chairman Int | Null Yes

LocationCreateManyVersionInput

Name Type Nullable
id Int No
latitude Float No
longitude Float No
created_at DateTime | Null Yes
updated_at DateTime | Null Yes

LoginRecordCreateManyVersionInput

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String | Null Yes
location String | Null Yes
authentication AuthenticationMethod | Null Yes
security_tokens String | Null Yes
logout_timestamp DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
devices Int | Null Yes

MemberCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
allergies String | Null Yes
complications String | Null Yes
medications String | Null Yes
blood_disorders String | Null Yes
club_id Int | Null Yes
infectious_diseases String | Null Yes
last_blood_donation DateTime | Null Yes
medical_conditions String | Null Yes
person_id Int | Null Yes

OrganizationCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
Volunteer JsonNullValueInput | Json No
personId Int No
organizationSettingsId Int No
clubId Int | Null Yes

OrganizationSettingsCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
loginRecordId Int | Null Yes
accountDeactivation Boolean | Null Yes
avatar String | Null Yes
clearBrowsingData Boolean | Null Yes
contactSupportLink String | Null Yes
dataRetentionDays Int | Null Yes
dataSharing Boolean | Null Yes
helpCenterLink String | Null Yes
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_answer String | Null Yes
security_question String | Null Yes
username String | Null Yes

PersonCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String | Null Yes
father_name String | Null Yes
mother_name String | Null Yes
profession String | Null Yes
dob DateTime | Null Yes
gender Gender | Null Yes
avatar String | Null Yes
contact_id Int No
teamId Int | Null Yes
bid String | Null Yes
driving String | Null Yes
nid String | Null Yes
passport String | Null Yes

RequestCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
memberId Int | Null Yes
personId Int No

SecurityQuestionCreateManyVersionInput

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No

SocialMediaLinksCreateManyVersionInput

Name Type Nullable
id Int No
facebook String | Null Yes
twitter String | Null Yes
instagram String | Null Yes
userId Int No
created_at DateTime No
updated_at DateTime No

SupportCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
messages String | Null Yes
status String | Null Yes
priority Int No
subject String | Null Yes

SupportMessageCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
author Int No

TeamCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
members Int No
status String No

TwoFactorAuthCreateManyVersionInput

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No

UserCreateManyVersionInput

Name Type Nullable
id Int No
username String | Null Yes
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
created_at DateTime No
updated_at DateTime No

UserRoleCreateManyVersionInput

Name Type Nullable
id Int No
name String No
user_id Int No
created_at DateTime No
updated_at DateTime No

UserSettingsCreateManyVersionInput

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme | Null Yes
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean | Null Yes
login_record_id Int No
high_contrast_mode Boolean | Null Yes
in_app_notifications Boolean | Null Yes
key_board_shortcut Boolean | Null Yes
notification_frequency String | Null Yes
notification_sound String | Null Yes
notification_vibrate Boolean | Null Yes
password_reset Boolean | Null Yes
security_question Int | Null Yes

AmbulanceUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
color String | NullableStringFieldUpdateOperationsInput | Null Yes
Contact ContactUpdateOneWithoutAmbulanceNestedInput No
Organization OrganizationUpdateOneWithoutAmbulanceNestedInput No
Person PersonUpdateOneRequiredWithoutAmbulanceNestedInput No

AmbulanceUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

AmbulanceUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
vehicle_number String | StringFieldUpdateOperationsInput No
ambulance_type String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | IntFieldUpdateOperationsInput No
organization Int | NullableIntFieldUpdateOperationsInput | Null Yes
equipment AmbulanceUpdateequipmentInput | String No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodCenterUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
Contact_BloodCenter_contactToContact ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput No
Person PersonUpdateOneRequiredWithoutBloodCenterNestedInput No
BloodDonation BloodDonationUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput No
Contact_Contact_blood_centerToBloodCenter ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput No

BloodCenterUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
title String | StringFieldUpdateOperationsInput No

BloodDonationUpdateWithoutVersionInput

Name Type Nullable
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes
BloodCenter BloodCenterUpdateOneRequiredWithoutBloodDonationNestedInput No
Person PersonUpdateOneRequiredWithoutBloodDonationNestedInput No

BloodDonationUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
donor_id Int | IntFieldUpdateOperationsInput No
organization_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

BloodDonationUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
donor_id Int | IntFieldUpdateOperationsInput No
organization_id Int | IntFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
referred_by String | NullableStringFieldUpdateOperationsInput | Null Yes
test_done NullableJsonNullValueInput | Json No
bags BloodDonationUpdatebagsInput | String No
media_done String | NullableStringFieldUpdateOperationsInput | Null Yes
media_used String | NullableStringFieldUpdateOperationsInput | Null Yes
incubation String | NullableStringFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
cabin_no String | NullableStringFieldUpdateOperationsInput | Null Yes
reg_no String | NullableStringFieldUpdateOperationsInput | Null Yes

ClubUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
Person_Club_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput No
Contact_Club_contactToContact ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput No
Person_Club_founderToPerson PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput No
Person_Club_vice_chairmanToPerson PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_clubToClub ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUpdateManyWithoutClubNestedInput No
Organization OrganizationUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No
Contact_Contact_clubToClub ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput No
Member MemberUncheckedUpdateManyWithoutClubNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutClubNestedInput No

ClubUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
established_at DateTime | DateTimeFieldUpdateOperationsInput No
contact Int | IntFieldUpdateOperationsInput No
chairman Int | IntFieldUpdateOperationsInput No
founder Int | IntFieldUpdateOperationsInput No
vice_chairman Int | IntFieldUpdateOperationsInput No

ContactUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUpdateManyWithoutContact_Club_contactToContactNestedInput No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenterUpdateOneWithoutContact_Contact_blood_centerToBloodCenterNestedInput No
Club_Contact_clubToClub ClubUpdateOneWithoutContact_Contact_clubToClubNestedInput No
Country CountryUpdateOneWithoutContactNestedInput No
Donation DonationUpdateOneWithoutContactNestedInput No
Hospital_Contact_hospitalToHospital HospitalUpdateOneWithoutContact_Contact_hospitalToHospitalNestedInput No
Person_Contact_personToPerson PersonUpdateOneWithoutContact_Contact_personToPersonNestedInput No
Hospital_Hospital_contactToContact HospitalUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutContactNestedInput No
BloodCenter_BloodCenter_contactToContact BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactNestedInput No
Club_Club_contactToContact ClubUncheckedUpdateManyWithoutContact_Club_contactToContactNestedInput No
Hospital_Hospital_contactToContact HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactNestedInput No
Person_Person_contact_idToContact PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactNestedInput No

ContactUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
address_line String | StringFieldUpdateOperationsInput No
address_line_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
state String | StringFieldUpdateOperationsInput No
city String | StringFieldUpdateOperationsInput No
zip String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
phone_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
fax String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
email_1 String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
social_media NullableJsonNullValueInput | Json No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
person Int | NullableIntFieldUpdateOperationsInput | Null Yes
club Int | NullableIntFieldUpdateOperationsInput | Null Yes
blood_center Int | NullableIntFieldUpdateOperationsInput | Null Yes
donation Int | NullableIntFieldUpdateOperationsInput | Null Yes
hospital Int | NullableIntFieldUpdateOperationsInput | Null Yes

CountryUpdateWithoutVersionInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Contact ContactUpdateManyWithoutCountryNestedInput No

CountryUncheckedUpdateWithoutVersionInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Contact ContactUncheckedUpdateManyWithoutCountryNestedInput No

CountryUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
alpha_3 String | StringFieldUpdateOperationsInput No
alpha_2 String | StringFieldUpdateOperationsInput No
numeric String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

DeviceUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
LoginRecord LoginRecordUpdateManyWithoutDeviceNestedInput No

DeviceUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes
LoginRecord LoginRecordUncheckedUpdateManyWithoutDeviceNestedInput No

DeviceUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
name String | NullableStringFieldUpdateOperationsInput | Null Yes
mac_address String | NullableStringFieldUpdateOperationsInput | Null Yes
model String | NullableStringFieldUpdateOperationsInput | Null Yes
os String | NullableStringFieldUpdateOperationsInput | Null Yes
os_version String | NullableStringFieldUpdateOperationsInput | Null Yes
device_id String | NullableStringFieldUpdateOperationsInput | Null Yes
brand String | NullableStringFieldUpdateOperationsInput | Null Yes
manufacturer String | NullableStringFieldUpdateOperationsInput | Null Yes


DonationUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
Contact ContactUncheckedUpdateManyWithoutDonationNestedInput No

DonationUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Int | IntFieldUpdateOperationsInput No
donated_at DateTime | DateTimeFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
member Int | IntFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No

HospitalUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No
Contact_Hospital_contactToContact ContactUpdateOneWithoutHospital_Hospital_contactToContactNestedInput No
Location LocationUpdateOneWithoutHospitalNestedInput No

HospitalUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes
Contact_Contact_hospitalToHospital ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalNestedInput No

HospitalUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
founded_at DateTime | DateTimeFieldUpdateOperationsInput No
accreditation String | NullableStringFieldUpdateOperationsInput | Null Yes
bed_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
emergency_room Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
services HospitalUpdateservicesInput | String No
specialties HospitalUpdatespecialtiesInput | String No
rating Float | NullableFloatFieldUpdateOperationsInput | Null Yes
facility_type FacilityType | NullableEnumFacilityTypeFieldUpdateOperationsInput | Null Yes
ownership String | NullableStringFieldUpdateOperationsInput | Null Yes
insurance_accepted String | NullableStringFieldUpdateOperationsInput | Null Yes
operating_hours String | NullableStringFieldUpdateOperationsInput | Null Yes
infrastructure String | NullableStringFieldUpdateOperationsInput | Null Yes
security_controls String | NullableStringFieldUpdateOperationsInput | Null Yes
location Int | NullableIntFieldUpdateOperationsInput | Null Yes
contact Int | NullableIntFieldUpdateOperationsInput | Null Yes
founder Int | NullableIntFieldUpdateOperationsInput | Null Yes
director Int | NullableIntFieldUpdateOperationsInput | Null Yes
chairman Int | NullableIntFieldUpdateOperationsInput | Null Yes

LocationUpdateWithoutVersionInput

Name Type Nullable
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Hospital HospitalUpdateManyWithoutLocationNestedInput No

LocationUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
Hospital HospitalUncheckedUpdateManyWithoutLocationNestedInput No

LocationUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
latitude Float | FloatFieldUpdateOperationsInput No
longitude Float | FloatFieldUpdateOperationsInput No
created_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

LoginRecordUpdateWithoutVersionInput

Name Type Nullable
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
Device DeviceUpdateOneWithoutLoginRecordNestedInput No
OrganizationSettings OrganizationSettingsUpdateManyWithoutLoginRecordNestedInput No
User UserUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes
OrganizationSettings OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No
User UserUncheckedUpdateManyWithoutLoginRecordNestedInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutLoginRecordNestedInput No

LoginRecordUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user Int | IntFieldUpdateOperationsInput No
ip_address String | StringFieldUpdateOperationsInput No
user_agent String | StringFieldUpdateOperationsInput No
login_status String | StringFieldUpdateOperationsInput No
session_id String | NullableStringFieldUpdateOperationsInput | Null Yes
location String | NullableStringFieldUpdateOperationsInput | Null Yes
authentication AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null Yes
security_tokens String | NullableStringFieldUpdateOperationsInput | Null Yes
logout_timestamp DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
devices Int | NullableIntFieldUpdateOperationsInput | Null Yes

MemberUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
Donation DonationUpdateManyWithoutMemberNestedInput No
Club ClubUpdateOneWithoutMemberNestedInput No
Person PersonUpdateOneWithoutMemberNestedInput No
Request RequestUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
Donation DonationUncheckedUpdateManyWithoutMemberNestedInput No
Request RequestUncheckedUpdateManyWithoutMemberNestedInput No

MemberUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
allergies String | NullableStringFieldUpdateOperationsInput | Null Yes
complications String | NullableStringFieldUpdateOperationsInput | Null Yes
medications String | NullableStringFieldUpdateOperationsInput | Null Yes
blood_disorders String | NullableStringFieldUpdateOperationsInput | Null Yes
club_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
infectious_diseases String | NullableStringFieldUpdateOperationsInput | Null Yes
last_blood_donation DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
medical_conditions String | NullableStringFieldUpdateOperationsInput | Null Yes
person_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

OrganizationUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
Ambulance AmbulanceUpdateManyWithoutOrganizationNestedInput No
Donation DonationUpdateManyWithoutOrganizationNestedInput No
Club ClubUpdateOneWithoutOrganizationNestedInput No
OrganizationSettings OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput No
Person PersonUpdateOneRequiredWithoutOrganizationNestedInput No
Support SupportUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUpdateManyWithoutOrganizationNestedInput No
Team TeamUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput No
Donation DonationUncheckedUpdateManyWithoutOrganizationNestedInput No
Support SupportUncheckedUpdateManyWithoutOrganizationNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput No
Team TeamUncheckedUpdateManyWithoutOrganizationNestedInput No

OrganizationUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
org_type OrgType | EnumOrgTypeFieldUpdateOperationsInput No
org_id Int | IntFieldUpdateOperationsInput No
Volunteer JsonNullValueInput | Json No
personId Int | IntFieldUpdateOperationsInput No
organizationSettingsId Int | IntFieldUpdateOperationsInput No
clubId Int | NullableIntFieldUpdateOperationsInput | Null Yes

OrganizationSettingsUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUpdateManyWithoutOrganizationSettingsNestedInput No
LoginRecord LoginRecordUpdateOneWithoutOrganizationSettingsNestedInput No

OrganizationSettingsUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
loginRecordId Int | NullableIntFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUncheckedUpdateManyWithoutOrganizationSettingsNestedInput No

OrganizationSettingsUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
loginRecordId Int | NullableIntFieldUpdateOperationsInput | Null Yes
accountDeactivation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
clearBrowsingData Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
contactSupportLink String | NullableStringFieldUpdateOperationsInput | Null Yes
dataRetentionDays Int | NullableIntFieldUpdateOperationsInput | Null Yes
dataSharing Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
helpCenterLink String | NullableStringFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_answer String | NullableStringFieldUpdateOperationsInput | Null Yes
security_question String | NullableStringFieldUpdateOperationsInput | Null Yes
username String | NullableStringFieldUpdateOperationsInput | Null Yes

PersonUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUpdateManyWithoutPersonNestedInput No
Member MemberUpdateManyWithoutPersonNestedInput No
Organization OrganizationUpdateManyWithoutPersonNestedInput No
Contact_Person_contact_idToContact ContactUpdateOneRequiredWithoutPerson_Person_contact_idToContactNestedInput No
Team_Person_teamIdToTeam TeamUpdateOneWithoutPerson_Person_teamIdToTeamNestedInput No
Request RequestUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes
Ambulance AmbulanceUncheckedUpdateManyWithoutPersonNestedInput No
BloodCenter BloodCenterUncheckedUpdateManyWithoutPersonNestedInput No
BloodDonation BloodDonationUncheckedUpdateManyWithoutPersonNestedInput No
Club_Club_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonNestedInput No
Club_Club_founderToPerson ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonNestedInput No
Club_Club_vice_chairmanToPerson ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonNestedInput No
Contact_Contact_personToPerson ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonNestedInput No
Donation DonationUncheckedUpdateManyWithoutPersonNestedInput No
Member MemberUncheckedUpdateManyWithoutPersonNestedInput No
Organization OrganizationUncheckedUpdateManyWithoutPersonNestedInput No
Request RequestUncheckedUpdateManyWithoutPersonNestedInput No
SupportMessage SupportMessageUncheckedUpdateManyWithoutPersonNestedInput No
Team_Team_membersToPerson TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonNestedInput No
User UserUncheckedUpdateManyWithoutPersonNestedInput No

PersonUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | NullableStringFieldUpdateOperationsInput | Null Yes
father_name String | NullableStringFieldUpdateOperationsInput | Null Yes
mother_name String | NullableStringFieldUpdateOperationsInput | Null Yes
profession String | NullableStringFieldUpdateOperationsInput | Null Yes
dob DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
gender Gender | NullableEnumGenderFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
contact_id Int | IntFieldUpdateOperationsInput No
teamId Int | NullableIntFieldUpdateOperationsInput | Null Yes
bid String | NullableStringFieldUpdateOperationsInput | Null Yes
driving String | NullableStringFieldUpdateOperationsInput | Null Yes
nid String | NullableStringFieldUpdateOperationsInput | Null Yes
passport String | NullableStringFieldUpdateOperationsInput | Null Yes

RequestUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
Member MemberUpdateOneWithoutRequestNestedInput No
Person PersonUpdateOneRequiredWithoutRequestNestedInput No

RequestUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
memberId Int | NullableIntFieldUpdateOperationsInput | Null Yes
personId Int | IntFieldUpdateOperationsInput No

RequestUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
health_issue String | StringFieldUpdateOperationsInput No
blood_group BloodGroup | EnumBloodGroupFieldUpdateOperationsInput No
quantity Int | IntFieldUpdateOperationsInput No
donation_type String | StringFieldUpdateOperationsInput No
datetime DateTime | DateTimeFieldUpdateOperationsInput No
hospital_name String | StringFieldUpdateOperationsInput No
hospital_address String | StringFieldUpdateOperationsInput No
hospital_phone String | StringFieldUpdateOperationsInput No
hospital_email String | StringFieldUpdateOperationsInput No
memberId Int | NullableIntFieldUpdateOperationsInput | Null Yes
personId Int | IntFieldUpdateOperationsInput No

SecurityQuestionUpdateWithoutVersionInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUpdateOneRequiredWithoutSecurityQuestionNestedInput No
UserSettings UserSettingsUpdateManyWithoutSecurityQuestionNestedInput No

SecurityQuestionUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
UserSettings UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput No

SecurityQuestionUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

SocialMediaLinksUpdateWithoutVersionInput

Name Type Nullable
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUpdateManyWithoutSocialMediaLinksNestedInput No

SocialMediaLinksUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUncheckedUpdateManyWithoutSocialMediaLinksNestedInput No

SocialMediaLinksUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
facebook String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter String | NullableStringFieldUpdateOperationsInput | Null Yes
instagram String | NullableStringFieldUpdateOperationsInput | Null Yes
userId Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

SupportUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
Organization OrganizationUpdateOneRequiredWithoutSupportNestedInput No
SupportMessage SupportMessageUpdateManyWithoutSupportNestedInput No

SupportUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes
SupportMessage SupportMessageUncheckedUpdateManyWithoutSupportNestedInput No

SupportUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
messages String | NullableStringFieldUpdateOperationsInput | Null Yes
status String | NullableStringFieldUpdateOperationsInput | Null Yes
priority Int | IntFieldUpdateOperationsInput No
subject String | NullableStringFieldUpdateOperationsInput | Null Yes


SupportMessageUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No

SupportMessageUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
support Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
author Int | IntFieldUpdateOperationsInput No

TeamUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No
Person_Team_membersToPerson PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput No
Organization OrganizationUpdateOneRequiredWithoutTeamNestedInput No

TeamUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No
Person_Person_teamIdToTeam PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput No

TeamUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
started_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | DateTimeFieldUpdateOperationsInput No
organization Int | IntFieldUpdateOperationsInput No
members Int | IntFieldUpdateOperationsInput No
status String | StringFieldUpdateOperationsInput No

TwoFactorAuthUpdateWithoutVersionInput

Name Type Nullable
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUpdateManyWithoutTwoFactorAuthNestedInput No

TwoFactorAuthUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUncheckedUpdateManyWithoutTwoFactorAuthNestedInput No

TwoFactorAuthUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
is_enabled Boolean | BoolFieldUpdateOperationsInput No
secret_key String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserUpdateWithoutVersionInput

Name Type Nullable
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUpdateManyWithoutUserNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserNestedInput No
Person PersonUpdateOneRequiredWithoutUserNestedInput No
SocialMediaLinks SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput No
TwoFactorAuth TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput No
UserSettings UserSettingsUpdateOneRequiredWithoutUserNestedInput No
UserRole UserRoleUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
SecurityQuestion SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput No
UserRole UserRoleUncheckedUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
username String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | StringFieldUpdateOperationsInput No
password String | StringFieldUpdateOperationsInput No
status AccountStatus | EnumAccountStatusFieldUpdateOperationsInput No
ip String | StringFieldUpdateOperationsInput No
two_factor_auth Int | IntFieldUpdateOperationsInput No
social_login Int | IntFieldUpdateOperationsInput No
logins Int | IntFieldUpdateOperationsInput No
person Int | IntFieldUpdateOperationsInput No
settings Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserRoleUpdateWithoutVersionInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
User UserUpdateOneRequiredWithoutUserRoleNestedInput No

UserRoleUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserRoleUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserSettingsUpdateWithoutVersionInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
User UserUpdateManyWithoutUserSettingsNestedInput No
LoginRecord LoginRecordUpdateOneRequiredWithoutUserSettingsNestedInput No
SecurityQuestion SecurityQuestionUpdateOneWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes
User UserUncheckedUpdateManyWithoutUserSettingsNestedInput No

UserSettingsUncheckedUpdateManyWithoutVersionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
language Language | EnumLanguageFieldUpdateOperationsInput No
time_format TimeFormat | EnumTimeFormatFieldUpdateOperationsInput No
date_format DateFormat | EnumDateFormatFieldUpdateOperationsInput No
timezone Timezone | EnumTimezoneFieldUpdateOperationsInput No
theme Theme | NullableEnumThemeFieldUpdateOperationsInput | Null Yes
email_notifications Boolean | BoolFieldUpdateOperationsInput No
phone_notification Boolean | BoolFieldUpdateOperationsInput No
push_notifications Boolean | BoolFieldUpdateOperationsInput No
two_factor_auth Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
login_record_id Int | IntFieldUpdateOperationsInput No
high_contrast_mode Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
in_app_notifications Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
key_board_shortcut Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
notification_frequency String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_sound String | NullableStringFieldUpdateOperationsInput | Null Yes
notification_vibrate Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
password_reset Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
security_question Int | NullableIntFieldUpdateOperationsInput | Null Yes

Output Types

Account

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at BigInt No
scope String No
id_token String Yes
session_state String No

Ambulance

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
vehicle_number String Yes
ambulance_type String No
person Int Yes
version String Yes
organization Int No
equipment String No
contact Int No
color String No
Contact Contact No
Organization Organization No
Person Person Yes
Version Version Yes

BloodCenter

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
established_at DateTime Yes
version String Yes
founder Int Yes
contact Int No
title String Yes
Contact_BloodCenter_contactToContact Contact No
Person Person Yes
Version Version Yes
BloodDonation BloodDonation[] No
Contact_Contact_blood_centerToBloodCenter Contact[] No
_count BloodCenterCountOutputType Yes

BloodDonation

Name Type Nullable
id Int Yes
donor_id Int Yes
organization_id Int Yes
amount Int Yes
version String Yes
donated_at DateTime Yes
referred_by String No
test_done Json No
bags String No
media_done String No
media_used String No
incubation String No
note String No
created_at DateTime No
updated_at DateTime No
cabin_no String No
reg_no String No
BloodCenter BloodCenter Yes
Person Person Yes
Version Version Yes

Club

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
name String Yes
established_at DateTime Yes
contact Int Yes
version String Yes
chairman Int Yes
founder Int Yes
vice_chairman Int Yes
Person_Club_chairmanToPerson Person Yes
Contact_Club_contactToContact Contact Yes
Person_Club_founderToPerson Person Yes
Version Version Yes
Person_Club_vice_chairmanToPerson Person Yes
Contact_Contact_clubToClub Contact[] No
Member Member[] No
Organization Organization[] No
_count ClubCountOutputType Yes

Contact

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
address_line String Yes
address_line_1 String No
state String Yes
city String Yes
zip String Yes
phone String Yes
phone_1 String No
fax String No
email String No
email_1 String No
website String No
social_media Json No
version String Yes
country String No
person Int No
club Int No
blood_center Int No
donation Int No
hospital Int No
Ambulance Ambulance[] No
BloodCenter_BloodCenter_contactToContact BloodCenter[] No
Club_Club_contactToContact Club[] No
BloodCenter_Contact_blood_centerToBloodCenter BloodCenter No
Club_Contact_clubToClub Club No
Country Country No
Donation Donation No
Hospital_Contact_hospitalToHospital Hospital No
Person_Contact_personToPerson Person No
Version Version Yes
Hospital_Hospital_contactToContact Hospital[] No
Person_Person_contact_idToContact Person[] No
_count ContactCountOutputType Yes

Country

Name Type Nullable
alpha_3 String Yes
alpha_2 String Yes
numeric String Yes
name String Yes
version String Yes
created_at DateTime No
updated_at DateTime No
Contact Contact[] No
Version Version Yes
_count CountryCountOutputType Yes

Device

Name Type Nullable
id Int Yes
created_at DateTime No
updated_at DateTime No
name String No
mac_address String No
model String No
os String No
os_version String No
device_id String No
brand String No
manufacturer String No
version String Yes
Version Version Yes
LoginRecord LoginRecord[] No
_count DeviceCountOutputType Yes

Donation

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
amount Int Yes
donated_at DateTime Yes
version String Yes
person Int Yes
member Int Yes
organization Int Yes
Contact Contact[] No
Member Member Yes
Organization Organization Yes
Person Person Yes
Version Version Yes
_count DonationCountOutputType Yes

Hospital

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
name String Yes
founded_at DateTime Yes
accreditation String No
bed_count Int No
emergency_room Boolean No
services String No
specialties String No
rating Float No
facility_type FacilityType No
ownership String No
insurance_accepted String No
operating_hours String No
infrastructure String No
security_controls String No
version String Yes
location Int No
contact Int No
founder Int No
director Int No
chairman Int No
Contact_Contact_hospitalToHospital Contact[] No
Contact_Hospital_contactToContact Contact No
Location Location No
Version Version Yes
_count HospitalCountOutputType Yes

Location

Name Type Nullable
id Int Yes
latitude Float Yes
longitude Float Yes
version String Yes
created_at DateTime No
updated_at DateTime No
Hospital Hospital[] No
Version Version Yes
_count LocationCountOutputType Yes

LoginRecord

Name Type Nullable
id Int Yes
user Int Yes
ip_address String Yes
user_agent String Yes
login_status String Yes
session_id String No
location String No
authentication AuthenticationMethod No
security_tokens String No
logout_timestamp DateTime No
version String Yes
created_at DateTime Yes
updated_at DateTime Yes
devices Int No
Device Device No
Version Version Yes
OrganizationSettings OrganizationSettings[] No
User User[] No
UserSettings UserSettings[] No
_count LoginRecordCountOutputType Yes

Member

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
allergies String No
complications String No
medications String No
blood_disorders String No
club_id Int No
infectious_diseases String No
last_blood_donation DateTime No
medical_conditions String No
person_id Int No
Donation Donation[] No
Club Club No
Person Person No
Version Version Yes
Request Request[] No
_count MemberCountOutputType Yes

Organization

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
org_type OrgType Yes
org_id Int Yes
Volunteer Json Yes
personId Int Yes
organizationSettingsId Int Yes
clubId Int No
version String Yes
Ambulance Ambulance[] No
Donation Donation[] No
Club Club No
OrganizationSettings OrganizationSettings Yes
Person Person Yes
Version Version Yes
Support Support[] No
SupportMessage SupportMessage[] No
Team Team[] No
_count OrganizationCountOutputType Yes

OrganizationSettings

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
language Language Yes
time_format TimeFormat Yes
date_format DateFormat Yes
timezone Timezone Yes
theme Theme No
email_notifications Boolean Yes
phone_notification Boolean Yes
push_notifications Boolean Yes
two_factor_auth Boolean No
loginRecordId Int No
accountDeactivation Boolean No
avatar String No
clearBrowsingData Boolean No
contactSupportLink String No
dataRetentionDays Int No
dataSharing Boolean No
helpCenterLink String No
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
security_answer String No
security_question String No
username String No
version String Yes
Organization Organization[] No
LoginRecord LoginRecord No
Version Version Yes
_count OrganizationSettingsCountOutputType Yes

Person

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
first_name String Yes
last_name String No
father_name String No
mother_name String No
profession String No
dob DateTime No
gender Gender No
version String Yes
avatar String No
contact_id Int Yes
teamId Int No
bid String No
driving String No
nid String No
passport String No
Ambulance Ambulance[] No
BloodCenter BloodCenter[] No
BloodDonation BloodDonation[] No
Club_Club_chairmanToPerson Club[] No
Club_Club_founderToPerson Club[] No
Club_Club_vice_chairmanToPerson Club[] No
Contact_Contact_personToPerson Contact[] No
Donation Donation[] No
Member Member[] No
Organization Organization[] No
Contact_Person_contact_idToContact Contact Yes
Team_Person_teamIdToTeam Team No
Version Version Yes
Request Request[] No
SupportMessage SupportMessage[] No
Team_Team_membersToPerson Team[] No
User User[] No
_count PersonCountOutputType Yes

Request

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
health_issue String Yes
blood_group BloodGroup Yes
quantity Int Yes
donation_type String Yes
datetime DateTime Yes
hospital_name String Yes
hospital_address String Yes
hospital_phone String Yes
hospital_email String Yes
version String Yes
memberId Int No
personId Int Yes
Member Member No
Person Person Yes
Version Version Yes

SecurityQuestion

Name Type Nullable
id Int Yes
question String Yes
answer String Yes
userId Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
User User Yes
Version Version Yes
UserSettings UserSettings[] No
_count SecurityQuestionCountOutputType Yes

Name Type Nullable
id Int Yes
facebook String No
twitter String No
instagram String No
userId Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
Version Version Yes
User User[] No
_count SocialMediaLinksCountOutputType Yes

Support

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
organization Int Yes
messages String No
status String No
priority Int Yes
subject String No
Organization Organization Yes
Version Version Yes
SupportMessage SupportMessage[] No
_count SupportCountOutputType Yes

SupportMessage

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
organization Int Yes
support Int Yes
message String Yes
author Int Yes
version String Yes
Person Person Yes
Organization Organization Yes
Support Support Yes
Version Version Yes

Team

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
started_at DateTime Yes
ended_at DateTime Yes
organization Int Yes
version String Yes
members Int Yes
status String Yes
Person_Person_teamIdToTeam Person[] No
Person_Team_membersToPerson Person Yes
Organization Organization Yes
Version Version Yes
_count TeamCountOutputType Yes

TwoFactorAuth

Name Type Nullable
id Int Yes
is_enabled Boolean Yes
secret_key String No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
Version Version Yes
User User[] No
_count TwoFactorAuthCountOutputType Yes

User

Name Type Nullable
id Int Yes
username String No
email String Yes
password String Yes
status AccountStatus Yes
ip String Yes
two_factor_auth Int Yes
social_login Int Yes
logins Int Yes
person Int Yes
settings Int Yes
version String Yes
created_at DateTime Yes
updated_at DateTime Yes
SecurityQuestion SecurityQuestion[] No
LoginRecord LoginRecord Yes
Person Person Yes
SocialMediaLinks SocialMediaLinks Yes
TwoFactorAuth TwoFactorAuth Yes
UserSettings UserSettings Yes
Version Version Yes
UserRole UserRole[] No
_count UserCountOutputType Yes

UserRole

Name Type Nullable
id Int Yes
name String Yes
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
User User Yes
Version Version Yes

UserSettings

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
language Language Yes
time_format TimeFormat Yes
date_format DateFormat Yes
timezone Timezone Yes
theme Theme No
email_notifications Boolean Yes
phone_notification Boolean Yes
push_notifications Boolean Yes
two_factor_auth Boolean No
login_record_id Int Yes
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
version String Yes
security_question Int No
User User[] No
LoginRecord LoginRecord Yes
SecurityQuestion SecurityQuestion No
Version Version Yes
_count UserSettingsCountOutputType Yes

Version

Name Type Nullable
id Int Yes
slug String Yes
title String Yes
description String No
created_at DateTime Yes
updated_at DateTime Yes
version String No
Ambulance Ambulance[] No
BloodCenter BloodCenter[] No
BloodDonation BloodDonation[] No
Club Club[] No
Contact Contact[] No
Country Country[] No
Device Device[] No
Donation Donation[] No
Hospital Hospital[] No
Location Location[] No
LoginRecord LoginRecord[] No
Member Member[] No
Organization Organization[] No
OrganizationSettings OrganizationSettings[] No
Person Person[] No
Request Request[] No
SecurityQuestion SecurityQuestion[] No
SocialMediaLinks SocialMediaLinks[] No
Support Support[] No
SupportMessage SupportMessage[] No
Team Team[] No
TwoFactorAuth TwoFactorAuth[] No
User User[] No
UserRole UserRole[] No
UserSettings UserSettings[] No
_count VersionCountOutputType Yes


AccountGroupByOutputType

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at BigInt No
scope String No
id_token String Yes
session_state String No
_count AccountCountAggregateOutputType No
_avg AccountAvgAggregateOutputType No
_sum AccountSumAggregateOutputType No
_min AccountMinAggregateOutputType No
_max AccountMaxAggregateOutputType No


AmbulanceGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
vehicle_number String Yes
ambulance_type String No
person Int Yes
version String Yes
organization Int No
equipment String No
contact Int No
color String No
_count AmbulanceCountAggregateOutputType No
_avg AmbulanceAvgAggregateOutputType No
_sum AmbulanceSumAggregateOutputType No
_min AmbulanceMinAggregateOutputType No
_max AmbulanceMaxAggregateOutputType No


BloodCenterGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
established_at DateTime Yes
version String Yes
founder Int Yes
contact Int No
title String Yes
_count BloodCenterCountAggregateOutputType No
_avg BloodCenterAvgAggregateOutputType No
_sum BloodCenterSumAggregateOutputType No
_min BloodCenterMinAggregateOutputType No
_max BloodCenterMaxAggregateOutputType No


BloodDonationGroupByOutputType

Name Type Nullable
id Int Yes
donor_id Int Yes
organization_id Int Yes
amount Int Yes
version String Yes
donated_at DateTime Yes
referred_by String No
test_done Json No
bags String No
media_done String No
media_used String No
incubation String No
note String No
created_at DateTime No
updated_at DateTime No
cabin_no String No
reg_no String No
_count BloodDonationCountAggregateOutputType No
_avg BloodDonationAvgAggregateOutputType No
_sum BloodDonationSumAggregateOutputType No
_min BloodDonationMinAggregateOutputType No
_max BloodDonationMaxAggregateOutputType No


ClubGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
name String Yes
established_at DateTime Yes
contact Int Yes
version String Yes
chairman Int Yes
founder Int Yes
vice_chairman Int Yes
_count ClubCountAggregateOutputType No
_avg ClubAvgAggregateOutputType No
_sum ClubSumAggregateOutputType No
_min ClubMinAggregateOutputType No
_max ClubMaxAggregateOutputType No


ContactGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
address_line String Yes
address_line_1 String No
state String Yes
city String Yes
zip String Yes
phone String Yes
phone_1 String No
fax String No
email String No
email_1 String No
website String No
social_media Json No
version String Yes
country String No
person Int No
club Int No
blood_center Int No
donation Int No
hospital Int No
_count ContactCountAggregateOutputType No
_avg ContactAvgAggregateOutputType No
_sum ContactSumAggregateOutputType No
_min ContactMinAggregateOutputType No
_max ContactMaxAggregateOutputType No

AggregateCountry

Name Type Nullable
_count CountryCountAggregateOutputType No
_min CountryMinAggregateOutputType No
_max CountryMaxAggregateOutputType No

CountryGroupByOutputType

Name Type Nullable
alpha_3 String Yes
alpha_2 String Yes
numeric String Yes
name String Yes
version String Yes
created_at DateTime No
updated_at DateTime No
_count CountryCountAggregateOutputType No
_min CountryMinAggregateOutputType No
_max CountryMaxAggregateOutputType No


DeviceGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime No
updated_at DateTime No
name String No
mac_address String No
model String No
os String No
os_version String No
device_id String No
brand String No
manufacturer String No
version String Yes
_count DeviceCountAggregateOutputType No
_avg DeviceAvgAggregateOutputType No
_sum DeviceSumAggregateOutputType No
_min DeviceMinAggregateOutputType No
_max DeviceMaxAggregateOutputType No


DonationGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
amount Int Yes
donated_at DateTime Yes
version String Yes
person Int Yes
member Int Yes
organization Int Yes
_count DonationCountAggregateOutputType No
_avg DonationAvgAggregateOutputType No
_sum DonationSumAggregateOutputType No
_min DonationMinAggregateOutputType No
_max DonationMaxAggregateOutputType No


HospitalGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
name String Yes
founded_at DateTime Yes
accreditation String No
bed_count Int No
emergency_room Boolean No
services String No
specialties String No
rating Float No
facility_type FacilityType No
ownership String No
insurance_accepted String No
operating_hours String No
infrastructure String No
security_controls String No
version String Yes
location Int No
contact Int No
founder Int No
director Int No
chairman Int No
_count HospitalCountAggregateOutputType No
_avg HospitalAvgAggregateOutputType No
_sum HospitalSumAggregateOutputType No
_min HospitalMinAggregateOutputType No
_max HospitalMaxAggregateOutputType No


LocationGroupByOutputType

Name Type Nullable
id Int Yes
latitude Float Yes
longitude Float Yes
version String Yes
created_at DateTime No
updated_at DateTime No
_count LocationCountAggregateOutputType No
_avg LocationAvgAggregateOutputType No
_sum LocationSumAggregateOutputType No
_min LocationMinAggregateOutputType No
_max LocationMaxAggregateOutputType No


LoginRecordGroupByOutputType

Name Type Nullable
id Int Yes
user Int Yes
ip_address String Yes
user_agent String Yes
login_status String Yes
session_id String No
location String No
authentication AuthenticationMethod No
security_tokens String No
logout_timestamp DateTime No
version String Yes
created_at DateTime Yes
updated_at DateTime Yes
devices Int No
_count LoginRecordCountAggregateOutputType No
_avg LoginRecordAvgAggregateOutputType No
_sum LoginRecordSumAggregateOutputType No
_min LoginRecordMinAggregateOutputType No
_max LoginRecordMaxAggregateOutputType No


MemberGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
allergies String No
complications String No
medications String No
blood_disorders String No
club_id Int No
infectious_diseases String No
last_blood_donation DateTime No
medical_conditions String No
person_id Int No
_count MemberCountAggregateOutputType No
_avg MemberAvgAggregateOutputType No
_sum MemberSumAggregateOutputType No
_min MemberMinAggregateOutputType No
_max MemberMaxAggregateOutputType No


OrganizationGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
org_type OrgType Yes
org_id Int Yes
Volunteer Json Yes
personId Int Yes
organizationSettingsId Int Yes
clubId Int No
version String Yes
_count OrganizationCountAggregateOutputType No
_avg OrganizationAvgAggregateOutputType No
_sum OrganizationSumAggregateOutputType No
_min OrganizationMinAggregateOutputType No
_max OrganizationMaxAggregateOutputType No


OrganizationSettingsGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
language Language Yes
time_format TimeFormat Yes
date_format DateFormat Yes
timezone Timezone Yes
theme Theme No
email_notifications Boolean Yes
phone_notification Boolean Yes
push_notifications Boolean Yes
two_factor_auth Boolean No
loginRecordId Int No
accountDeactivation Boolean No
avatar String No
clearBrowsingData Boolean No
contactSupportLink String No
dataRetentionDays Int No
dataSharing Boolean No
helpCenterLink String No
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
security_answer String No
security_question String No
username String No
version String Yes
_count OrganizationSettingsCountAggregateOutputType No
_avg OrganizationSettingsAvgAggregateOutputType No
_sum OrganizationSettingsSumAggregateOutputType No
_min OrganizationSettingsMinAggregateOutputType No
_max OrganizationSettingsMaxAggregateOutputType No


PersonGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
first_name String Yes
last_name String No
father_name String No
mother_name String No
profession String No
dob DateTime No
gender Gender No
version String Yes
avatar String No
contact_id Int Yes
teamId Int No
bid String No
driving String No
nid String No
passport String No
_count PersonCountAggregateOutputType No
_avg PersonAvgAggregateOutputType No
_sum PersonSumAggregateOutputType No
_min PersonMinAggregateOutputType No
_max PersonMaxAggregateOutputType No


RequestGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
health_issue String Yes
blood_group BloodGroup Yes
quantity Int Yes
donation_type String Yes
datetime DateTime Yes
hospital_name String Yes
hospital_address String Yes
hospital_phone String Yes
hospital_email String Yes
version String Yes
memberId Int No
personId Int Yes
_count RequestCountAggregateOutputType No
_avg RequestAvgAggregateOutputType No
_sum RequestSumAggregateOutputType No
_min RequestMinAggregateOutputType No
_max RequestMaxAggregateOutputType No


SecurityQuestionGroupByOutputType

Name Type Nullable
id Int Yes
question String Yes
answer String Yes
userId Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
_count SecurityQuestionCountAggregateOutputType No
_avg SecurityQuestionAvgAggregateOutputType No
_sum SecurityQuestionSumAggregateOutputType No
_min SecurityQuestionMinAggregateOutputType No
_max SecurityQuestionMaxAggregateOutputType No


SocialMediaLinksGroupByOutputType

Name Type Nullable
id Int Yes
facebook String No
twitter String No
instagram String No
userId Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
_count SocialMediaLinksCountAggregateOutputType No
_avg SocialMediaLinksAvgAggregateOutputType No
_sum SocialMediaLinksSumAggregateOutputType No
_min SocialMediaLinksMinAggregateOutputType No
_max SocialMediaLinksMaxAggregateOutputType No


SupportGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
organization Int Yes
messages String No
status String No
priority Int Yes
subject String No
_count SupportCountAggregateOutputType No
_avg SupportAvgAggregateOutputType No
_sum SupportSumAggregateOutputType No
_min SupportMinAggregateOutputType No
_max SupportMaxAggregateOutputType No


SupportMessageGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
organization Int Yes
support Int Yes
message String Yes
author Int Yes
version String Yes
_count SupportMessageCountAggregateOutputType No
_avg SupportMessageAvgAggregateOutputType No
_sum SupportMessageSumAggregateOutputType No
_min SupportMessageMinAggregateOutputType No
_max SupportMessageMaxAggregateOutputType No


TeamGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
started_at DateTime Yes
ended_at DateTime Yes
organization Int Yes
version String Yes
members Int Yes
status String Yes
_count TeamCountAggregateOutputType No
_avg TeamAvgAggregateOutputType No
_sum TeamSumAggregateOutputType No
_min TeamMinAggregateOutputType No
_max TeamMaxAggregateOutputType No


TwoFactorAuthGroupByOutputType

Name Type Nullable
id Int Yes
is_enabled Boolean Yes
secret_key String No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
_count TwoFactorAuthCountAggregateOutputType No
_avg TwoFactorAuthAvgAggregateOutputType No
_sum TwoFactorAuthSumAggregateOutputType No
_min TwoFactorAuthMinAggregateOutputType No
_max TwoFactorAuthMaxAggregateOutputType No


UserGroupByOutputType

Name Type Nullable
id Int Yes
username String No
email String Yes
password String Yes
status AccountStatus Yes
ip String Yes
two_factor_auth Int Yes
social_login Int Yes
logins Int Yes
person Int Yes
settings Int Yes
version String Yes
created_at DateTime Yes
updated_at DateTime Yes
_count UserCountAggregateOutputType No
_avg UserAvgAggregateOutputType No
_sum UserSumAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No


UserRoleGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
version String Yes
_count UserRoleCountAggregateOutputType No
_avg UserRoleAvgAggregateOutputType No
_sum UserRoleSumAggregateOutputType No
_min UserRoleMinAggregateOutputType No
_max UserRoleMaxAggregateOutputType No


UserSettingsGroupByOutputType

Name Type Nullable
id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
language Language Yes
time_format TimeFormat Yes
date_format DateFormat Yes
timezone Timezone Yes
theme Theme No
email_notifications Boolean Yes
phone_notification Boolean Yes
push_notifications Boolean Yes
two_factor_auth Boolean No
login_record_id Int Yes
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
version String Yes
security_question Int No
_count UserSettingsCountAggregateOutputType No
_avg UserSettingsAvgAggregateOutputType No
_sum UserSettingsSumAggregateOutputType No
_min UserSettingsMinAggregateOutputType No
_max UserSettingsMaxAggregateOutputType No


VersionGroupByOutputType

Name Type Nullable
id Int Yes
slug String Yes
title String Yes
description String No
created_at DateTime Yes
updated_at DateTime Yes
version String No
_count VersionCountAggregateOutputType No
_avg VersionAvgAggregateOutputType No
_sum VersionSumAggregateOutputType No
_min VersionMinAggregateOutputType No
_max VersionMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

AccountCountAggregateOutputType

Name Type Nullable
userId Int Yes
type Int Yes
provider Int Yes
providerAccountId Int Yes
refresh_token Int Yes
access_token Int Yes
expires_at Int Yes
scope Int Yes
id_token Int Yes
session_state Int Yes
_all Int Yes

AccountAvgAggregateOutputType

Name Type Nullable
expires_at Float No

AccountSumAggregateOutputType

Name Type Nullable
expires_at BigInt No

AccountMinAggregateOutputType

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at BigInt No
scope String No
id_token String No
session_state String No

AccountMaxAggregateOutputType

Name Type Nullable
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at BigInt No
scope String No
id_token String No
session_state String No

AmbulanceCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
vehicle_number Int Yes
ambulance_type Int Yes
person Int Yes
version Int Yes
organization Int Yes
equipment Int Yes
contact Int Yes
color Int Yes
_all Int Yes

AmbulanceAvgAggregateOutputType

Name Type Nullable
id Float No
person Float No
organization Float No
contact Float No

AmbulanceSumAggregateOutputType

Name Type Nullable
id Int No
person Int No
organization Int No
contact Int No

AmbulanceMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String No
person Int No
version String No
organization Int No
contact Int No
color String No

AmbulanceMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
vehicle_number String No
ambulance_type String No
person Int No
version String No
organization Int No
contact Int No
color String No

BloodCenterCountOutputType

Name Type Nullable
BloodDonation Int Yes
Contact_Contact_blood_centerToBloodCenter Int Yes

BloodCenterCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
established_at Int Yes
version Int Yes
founder Int Yes
contact Int Yes
title Int Yes
_all Int Yes

BloodCenterAvgAggregateOutputType

Name Type Nullable
id Float No
founder Float No
contact Float No

BloodCenterSumAggregateOutputType

Name Type Nullable
id Int No
founder Int No
contact Int No

BloodCenterMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
contact Int No
title String No

BloodCenterMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
established_at DateTime No
version String No
founder Int No
contact Int No
title String No

BloodDonationCountAggregateOutputType

Name Type Nullable
id Int Yes
donor_id Int Yes
organization_id Int Yes
amount Int Yes
version Int Yes
donated_at Int Yes
referred_by Int Yes
test_done Int Yes
bags Int Yes
media_done Int Yes
media_used Int Yes
incubation Int Yes
note Int Yes
created_at Int Yes
updated_at Int Yes
cabin_no Int Yes
reg_no Int Yes
_all Int Yes

BloodDonationAvgAggregateOutputType

Name Type Nullable
id Float No
donor_id Float No
organization_id Float No
amount Float No

BloodDonationSumAggregateOutputType

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No

BloodDonationMinAggregateOutputType

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String No
media_done String No
media_used String No
incubation String No
note String No
created_at DateTime No
updated_at DateTime No
cabin_no String No
reg_no String No

BloodDonationMaxAggregateOutputType

Name Type Nullable
id Int No
donor_id Int No
organization_id Int No
amount Int No
version String No
donated_at DateTime No
referred_by String No
media_done String No
media_used String No
incubation String No
note String No
created_at DateTime No
updated_at DateTime No
cabin_no String No
reg_no String No

ClubCountOutputType

Name Type Nullable
Contact_Contact_clubToClub Int Yes
Member Int Yes
Organization Int Yes

ClubCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
name Int Yes
established_at Int Yes
contact Int Yes
version Int Yes
chairman Int Yes
founder Int Yes
vice_chairman Int Yes
_all Int Yes

ClubAvgAggregateOutputType

Name Type Nullable
id Float No
contact Float No
chairman Float No
founder Float No
vice_chairman Float No

ClubSumAggregateOutputType

Name Type Nullable
id Int No
contact Int No
chairman Int No
founder Int No
vice_chairman Int No

ClubMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No

ClubMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
established_at DateTime No
contact Int No
version String No
chairman Int No
founder Int No
vice_chairman Int No

ContactCountOutputType

Name Type Nullable
Ambulance Int Yes
BloodCenter_BloodCenter_contactToContact Int Yes
Club_Club_contactToContact Int Yes
Hospital_Hospital_contactToContact Int Yes
Person_Person_contact_idToContact Int Yes

ContactCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
address_line Int Yes
address_line_1 Int Yes
state Int Yes
city Int Yes
zip Int Yes
phone Int Yes
phone_1 Int Yes
fax Int Yes
email Int Yes
email_1 Int Yes
website Int Yes
social_media Int Yes
version Int Yes
country Int Yes
person Int Yes
club Int Yes
blood_center Int Yes
donation Int Yes
hospital Int Yes
_all Int Yes

ContactAvgAggregateOutputType

Name Type Nullable
id Float No
person Float No
club Float No
blood_center Float No
donation Float No
hospital Float No

ContactSumAggregateOutputType

Name Type Nullable
id Int No
person Int No
club Int No
blood_center Int No
donation Int No
hospital Int No

ContactMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String No
state String No
city String No
zip String No
phone String No
phone_1 String No
fax String No
email String No
email_1 String No
website String No
version String No
country String No
person Int No
club Int No
blood_center Int No
donation Int No
hospital Int No

ContactMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
address_line String No
address_line_1 String No
state String No
city String No
zip String No
phone String No
phone_1 String No
fax String No
email String No
email_1 String No
website String No
version String No
country String No
person Int No
club Int No
blood_center Int No
donation Int No
hospital Int No

CountryCountOutputType

Name Type Nullable
Contact Int Yes

CountryCountAggregateOutputType

Name Type Nullable
alpha_3 Int Yes
alpha_2 Int Yes
numeric Int Yes
name Int Yes
version Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

CountryMinAggregateOutputType

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
version String No
created_at DateTime No
updated_at DateTime No

CountryMaxAggregateOutputType

Name Type Nullable
alpha_3 String No
alpha_2 String No
numeric String No
name String No
version String No
created_at DateTime No
updated_at DateTime No

DeviceCountOutputType

Name Type Nullable
LoginRecord Int Yes

DeviceCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
name Int Yes
mac_address Int Yes
model Int Yes
os Int Yes
os_version Int Yes
device_id Int Yes
brand Int Yes
manufacturer Int Yes
version Int Yes
_all Int Yes

DeviceAvgAggregateOutputType

Name Type Nullable
id Float No

DeviceSumAggregateOutputType

Name Type Nullable
id Int No

DeviceMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
mac_address String No
model String No
os String No
os_version String No
device_id String No
brand String No
manufacturer String No
version String No

DeviceMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
mac_address String No
model String No
os String No
os_version String No
device_id String No
brand String No
manufacturer String No
version String No

DonationCountOutputType

Name Type Nullable
Contact Int Yes

DonationCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
amount Int Yes
donated_at Int Yes
version Int Yes
person Int Yes
member Int Yes
organization Int Yes
_all Int Yes

DonationAvgAggregateOutputType

Name Type Nullable
id Float No
amount Float No
person Float No
member Float No
organization Float No

DonationSumAggregateOutputType

Name Type Nullable
id Int No
amount Int No
person Int No
member Int No
organization Int No

DonationMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No
organization Int No

DonationMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
amount Int No
donated_at DateTime No
version String No
person Int No
member Int No
organization Int No

HospitalCountOutputType

Name Type Nullable
Contact_Contact_hospitalToHospital Int Yes

HospitalCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
name Int Yes
founded_at Int Yes
accreditation Int Yes
bed_count Int Yes
emergency_room Int Yes
services Int Yes
specialties Int Yes
rating Int Yes
facility_type Int Yes
ownership Int Yes
insurance_accepted Int Yes
operating_hours Int Yes
infrastructure Int Yes
security_controls Int Yes
version Int Yes
location Int Yes
contact Int Yes
founder Int Yes
director Int Yes
chairman Int Yes
_all Int Yes

HospitalAvgAggregateOutputType

Name Type Nullable
id Float No
bed_count Float No
rating Float No
location Float No
contact Float No
founder Float No
director Float No
chairman Float No

HospitalSumAggregateOutputType

Name Type Nullable
id Int No
bed_count Int No
rating Float No
location Int No
contact Int No
founder Int No
director Int No
chairman Int No

HospitalMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String No
bed_count Int No
emergency_room Boolean No
rating Float No
facility_type FacilityType No
ownership String No
insurance_accepted String No
operating_hours String No
infrastructure String No
security_controls String No
version String No
location Int No
contact Int No
founder Int No
director Int No
chairman Int No

HospitalMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
name String No
founded_at DateTime No
accreditation String No
bed_count Int No
emergency_room Boolean No
rating Float No
facility_type FacilityType No
ownership String No
insurance_accepted String No
operating_hours String No
infrastructure String No
security_controls String No
version String No
location Int No
contact Int No
founder Int No
director Int No
chairman Int No

LocationCountOutputType

Name Type Nullable
Hospital Int Yes

LocationCountAggregateOutputType

Name Type Nullable
id Int Yes
latitude Int Yes
longitude Int Yes
version Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

LocationAvgAggregateOutputType

Name Type Nullable
id Float No
latitude Float No
longitude Float No

LocationSumAggregateOutputType

Name Type Nullable
id Int No
latitude Float No
longitude Float No

LocationMinAggregateOutputType

Name Type Nullable
id Int No
latitude Float No
longitude Float No
version String No
created_at DateTime No
updated_at DateTime No

LocationMaxAggregateOutputType

Name Type Nullable
id Int No
latitude Float No
longitude Float No
version String No
created_at DateTime No
updated_at DateTime No

LoginRecordCountOutputType

Name Type Nullable
OrganizationSettings Int Yes
User Int Yes
UserSettings Int Yes

LoginRecordCountAggregateOutputType

Name Type Nullable
id Int Yes
user Int Yes
ip_address Int Yes
user_agent Int Yes
login_status Int Yes
session_id Int Yes
location Int Yes
authentication Int Yes
security_tokens Int Yes
logout_timestamp Int Yes
version Int Yes
created_at Int Yes
updated_at Int Yes
devices Int Yes
_all Int Yes

LoginRecordAvgAggregateOutputType

Name Type Nullable
id Float No
user Float No
devices Float No

LoginRecordSumAggregateOutputType

Name Type Nullable
id Int No
user Int No
devices Int No

LoginRecordMinAggregateOutputType

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String No
location String No
authentication AuthenticationMethod No
security_tokens String No
logout_timestamp DateTime No
version String No
created_at DateTime No
updated_at DateTime No
devices Int No

LoginRecordMaxAggregateOutputType

Name Type Nullable
id Int No
user Int No
ip_address String No
user_agent String No
login_status String No
session_id String No
location String No
authentication AuthenticationMethod No
security_tokens String No
logout_timestamp DateTime No
version String No
created_at DateTime No
updated_at DateTime No
devices Int No

MemberCountOutputType

Name Type Nullable
Donation Int Yes
Request Int Yes

MemberCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
allergies Int Yes
complications Int Yes
medications Int Yes
blood_disorders Int Yes
club_id Int Yes
infectious_diseases Int Yes
last_blood_donation Int Yes
medical_conditions Int Yes
person_id Int Yes
_all Int Yes

MemberAvgAggregateOutputType

Name Type Nullable
id Float No
club_id Float No
person_id Float No

MemberSumAggregateOutputType

Name Type Nullable
id Int No
club_id Int No
person_id Int No

MemberMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String No
complications String No
medications String No
blood_disorders String No
club_id Int No
infectious_diseases String No
last_blood_donation DateTime No
medical_conditions String No
person_id Int No

MemberMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
allergies String No
complications String No
medications String No
blood_disorders String No
club_id Int No
infectious_diseases String No
last_blood_donation DateTime No
medical_conditions String No
person_id Int No

OrganizationCountOutputType

Name Type Nullable
Ambulance Int Yes
Donation Int Yes
Support Int Yes
SupportMessage Int Yes
Team Int Yes

OrganizationCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
org_type Int Yes
org_id Int Yes
Volunteer Int Yes
personId Int Yes
organizationSettingsId Int Yes
clubId Int Yes
version Int Yes
_all Int Yes

OrganizationAvgAggregateOutputType

Name Type Nullable
id Float No
org_id Float No
personId Float No
organizationSettingsId Float No
clubId Float No

OrganizationSumAggregateOutputType

Name Type Nullable
id Int No
org_id Int No
personId Int No
organizationSettingsId Int No
clubId Int No

OrganizationMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
personId Int No
organizationSettingsId Int No
clubId Int No
version String No

OrganizationMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
org_type OrgType No
org_id Int No
personId Int No
organizationSettingsId Int No
clubId Int No
version String No

OrganizationSettingsCountOutputType

Name Type Nullable
Organization Int Yes

OrganizationSettingsCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
language Int Yes
time_format Int Yes
date_format Int Yes
timezone Int Yes
theme Int Yes
email_notifications Int Yes
phone_notification Int Yes
push_notifications Int Yes
two_factor_auth Int Yes
loginRecordId Int Yes
accountDeactivation Int Yes
avatar Int Yes
clearBrowsingData Int Yes
contactSupportLink Int Yes
dataRetentionDays Int Yes
dataSharing Int Yes
helpCenterLink Int Yes
high_contrast_mode Int Yes
in_app_notifications Int Yes
key_board_shortcut Int Yes
notification_frequency Int Yes
notification_sound Int Yes
notification_vibrate Int Yes
password_reset Int Yes
security_answer Int Yes
security_question Int Yes
username Int Yes
version Int Yes
_all Int Yes

OrganizationSettingsAvgAggregateOutputType

Name Type Nullable
id Float No
loginRecordId Float No
dataRetentionDays Float No

OrganizationSettingsSumAggregateOutputType

Name Type Nullable
id Int No
loginRecordId Int No
dataRetentionDays Int No

OrganizationSettingsMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme No
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean No
loginRecordId Int No
accountDeactivation Boolean No
avatar String No
clearBrowsingData Boolean No
contactSupportLink String No
dataRetentionDays Int No
dataSharing Boolean No
helpCenterLink String No
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
security_answer String No
security_question String No
username String No
version String No

OrganizationSettingsMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme No
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean No
loginRecordId Int No
accountDeactivation Boolean No
avatar String No
clearBrowsingData Boolean No
contactSupportLink String No
dataRetentionDays Int No
dataSharing Boolean No
helpCenterLink String No
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
security_answer String No
security_question String No
username String No
version String No

PersonCountOutputType

Name Type Nullable
Ambulance Int Yes
BloodCenter Int Yes
BloodDonation Int Yes
Club_Club_chairmanToPerson Int Yes
Club_Club_founderToPerson Int Yes
Club_Club_vice_chairmanToPerson Int Yes
Contact_Contact_personToPerson Int Yes
Donation Int Yes
Member Int Yes
Organization Int Yes
Request Int Yes
SupportMessage Int Yes
Team_Team_membersToPerson Int Yes
User Int Yes

PersonCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
first_name Int Yes
last_name Int Yes
father_name Int Yes
mother_name Int Yes
profession Int Yes
dob Int Yes
gender Int Yes
version Int Yes
avatar Int Yes
contact_id Int Yes
teamId Int Yes
bid Int Yes
driving Int Yes
nid Int Yes
passport Int Yes
_all Int Yes

PersonAvgAggregateOutputType

Name Type Nullable
id Float No
contact_id Float No
teamId Float No

PersonSumAggregateOutputType

Name Type Nullable
id Int No
contact_id Int No
teamId Int No

PersonMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String No
father_name String No
mother_name String No
profession String No
dob DateTime No
gender Gender No
version String No
avatar String No
contact_id Int No
teamId Int No
bid String No
driving String No
nid String No
passport String No

PersonMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
first_name String No
last_name String No
father_name String No
mother_name String No
profession String No
dob DateTime No
gender Gender No
version String No
avatar String No
contact_id Int No
teamId Int No
bid String No
driving String No
nid String No
passport String No

RequestCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
health_issue Int Yes
blood_group Int Yes
quantity Int Yes
donation_type Int Yes
datetime Int Yes
hospital_name Int Yes
hospital_address Int Yes
hospital_phone Int Yes
hospital_email Int Yes
version Int Yes
memberId Int Yes
personId Int Yes
_all Int Yes

RequestAvgAggregateOutputType

Name Type Nullable
id Float No
quantity Float No
memberId Float No
personId Float No

RequestSumAggregateOutputType

Name Type Nullable
id Int No
quantity Int No
memberId Int No
personId Int No

RequestMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
memberId Int No
personId Int No

RequestMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
health_issue String No
blood_group BloodGroup No
quantity Int No
donation_type String No
datetime DateTime No
hospital_name String No
hospital_address String No
hospital_phone String No
hospital_email String No
version String No
memberId Int No
personId Int No

SecurityQuestionCountOutputType

Name Type Nullable
UserSettings Int Yes

SecurityQuestionCountAggregateOutputType

Name Type Nullable
id Int Yes
question Int Yes
answer Int Yes
userId Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
_all Int Yes

SecurityQuestionAvgAggregateOutputType

Name Type Nullable
id Float No
userId Float No

SecurityQuestionSumAggregateOutputType

Name Type Nullable
id Int No
userId Int No

SecurityQuestionMinAggregateOutputType

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SecurityQuestionMaxAggregateOutputType

Name Type Nullable
id Int No
question String No
answer String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SocialMediaLinksCountOutputType

Name Type Nullable
User Int Yes

SocialMediaLinksCountAggregateOutputType

Name Type Nullable
id Int Yes
facebook Int Yes
twitter Int Yes
instagram Int Yes
userId Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
_all Int Yes

SocialMediaLinksAvgAggregateOutputType

Name Type Nullable
id Float No
userId Float No

SocialMediaLinksSumAggregateOutputType

Name Type Nullable
id Int No
userId Int No

SocialMediaLinksMinAggregateOutputType

Name Type Nullable
id Int No
facebook String No
twitter String No
instagram String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SocialMediaLinksMaxAggregateOutputType

Name Type Nullable
id Int No
facebook String No
twitter String No
instagram String No
userId Int No
created_at DateTime No
updated_at DateTime No
version String No

SupportCountOutputType

Name Type Nullable
SupportMessage Int Yes

SupportCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
organization Int Yes
messages Int Yes
status Int Yes
priority Int Yes
subject Int Yes
_all Int Yes

SupportAvgAggregateOutputType

Name Type Nullable
id Float No
organization Float No
priority Float No

SupportSumAggregateOutputType

Name Type Nullable
id Int No
organization Int No
priority Int No

SupportMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
organization Int No
messages String No
status String No
priority Int No
subject String No

SupportMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
version String No
organization Int No
messages String No
status String No
priority Int No
subject String No

SupportMessageCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
organization Int Yes
support Int Yes
message Int Yes
author Int Yes
version Int Yes
_all Int Yes

SupportMessageAvgAggregateOutputType

Name Type Nullable
id Float No
organization Float No
support Float No
author Float No

SupportMessageSumAggregateOutputType

Name Type Nullable
id Int No
organization Int No
support Int No
author Int No

SupportMessageMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
author Int No
version String No

SupportMessageMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
organization Int No
support Int No
message String No
author Int No
version String No

TeamCountOutputType

Name Type Nullable
Person_Person_teamIdToTeam Int Yes

TeamCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
started_at Int Yes
ended_at Int Yes
organization Int Yes
version Int Yes
members Int Yes
status Int Yes
_all Int Yes

TeamAvgAggregateOutputType

Name Type Nullable
id Float No
organization Float No
members Float No

TeamSumAggregateOutputType

Name Type Nullable
id Int No
organization Int No
members Int No

TeamMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
members Int No
status String No

TeamMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
started_at DateTime No
ended_at DateTime No
organization Int No
version String No
members Int No
status String No

TwoFactorAuthCountOutputType

Name Type Nullable
User Int Yes

TwoFactorAuthCountAggregateOutputType

Name Type Nullable
id Int Yes
is_enabled Int Yes
secret_key Int Yes
user_id Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
_all Int Yes

TwoFactorAuthAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No

TwoFactorAuthSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No

TwoFactorAuthMinAggregateOutputType

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String No
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

TwoFactorAuthMaxAggregateOutputType

Name Type Nullable
id Int No
is_enabled Boolean No
secret_key String No
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

UserCountOutputType

Name Type Nullable
SecurityQuestion Int Yes
UserRole Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
username Int Yes
email Int Yes
password Int Yes
status Int Yes
ip Int Yes
two_factor_auth Int Yes
social_login Int Yes
logins Int Yes
person Int Yes
settings Int Yes
version Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

UserAvgAggregateOutputType

Name Type Nullable
id Float No
two_factor_auth Float No
social_login Float No
logins Float No
person Float No
settings Float No

UserSumAggregateOutputType

Name Type Nullable
id Int No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No

UserMinAggregateOutputType

Name Type Nullable
id Int No
username String No
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

UserMaxAggregateOutputType

Name Type Nullable
id Int No
username String No
email String No
password String No
status AccountStatus No
ip String No
two_factor_auth Int No
social_login Int No
logins Int No
person Int No
settings Int No
version String No
created_at DateTime No
updated_at DateTime No

UserRoleCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
user_id Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
_all Int Yes

UserRoleAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No

UserRoleSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No

UserRoleMinAggregateOutputType

Name Type Nullable
id Int No
name String No
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

UserRoleMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
user_id Int No
created_at DateTime No
updated_at DateTime No
version String No

UserSettingsCountOutputType

Name Type Nullable
User Int Yes

UserSettingsCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
updated_at Int Yes
language Int Yes
time_format Int Yes
date_format Int Yes
timezone Int Yes
theme Int Yes
email_notifications Int Yes
phone_notification Int Yes
push_notifications Int Yes
two_factor_auth Int Yes
login_record_id Int Yes
high_contrast_mode Int Yes
in_app_notifications Int Yes
key_board_shortcut Int Yes
notification_frequency Int Yes
notification_sound Int Yes
notification_vibrate Int Yes
password_reset Int Yes
version Int Yes
security_question Int Yes
_all Int Yes

UserSettingsAvgAggregateOutputType

Name Type Nullable
id Float No
login_record_id Float No
security_question Float No

UserSettingsSumAggregateOutputType

Name Type Nullable
id Int No
login_record_id Int No
security_question Int No

UserSettingsMinAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme No
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean No
login_record_id Int No
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
version String No
security_question Int No

UserSettingsMaxAggregateOutputType

Name Type Nullable
id Int No
created_at DateTime No
updated_at DateTime No
language Language No
time_format TimeFormat No
date_format DateFormat No
timezone Timezone No
theme Theme No
email_notifications Boolean No
phone_notification Boolean No
push_notifications Boolean No
two_factor_auth Boolean No
login_record_id Int No
high_contrast_mode Boolean No
in_app_notifications Boolean No
key_board_shortcut Boolean No
notification_frequency String No
notification_sound String No
notification_vibrate Boolean No
password_reset Boolean No
version String No
security_question Int No

VersionCountOutputType

Name Type Nullable
Ambulance Int Yes
BloodCenter Int Yes
BloodDonation Int Yes
Club Int Yes
Contact Int Yes
Country Int Yes
Device Int Yes
Donation Int Yes
Hospital Int Yes
Location Int Yes
LoginRecord Int Yes
Member Int Yes
Organization Int Yes
OrganizationSettings Int Yes
Person Int Yes
Request Int Yes
SecurityQuestion Int Yes
SocialMediaLinks Int Yes
Support Int Yes
SupportMessage Int Yes
Team Int Yes
TwoFactorAuth Int Yes
User Int Yes
UserRole Int Yes
UserSettings Int Yes

VersionCountAggregateOutputType

Name Type Nullable
id Int Yes
slug Int Yes
title Int Yes
description Int Yes
created_at Int Yes
updated_at Int Yes
version Int Yes
_all Int Yes

VersionAvgAggregateOutputType

Name Type Nullable
id Float No

VersionSumAggregateOutputType

Name Type Nullable
id Int No

VersionMinAggregateOutputType

Name Type Nullable
id Int No
slug String No
title String No
description String No
created_at DateTime No
updated_at DateTime No
version String No

VersionMaxAggregateOutputType

Name Type Nullable
id Int No
slug String No
title String No
description String No
created_at DateTime No
updated_at DateTime No
version String No